Binary Tree Traversals ?

https://www.computersprofessor.com/2016/11/binary-tree-traversals.html
Traversing is the process of
passing through every node exactly once in a binary tree. Traversing is
also called as visiting. There are 3-
ways of traversing techniques.
1. preorder
2. Inorder
3. postorder
Preorder : In
pre order traversal a root node is followed by its left sub tree and right
sub tree.
1. Go to root node
2. Traversal the left sub tree
3. Traversal the right sub tree
O/P: ABCDEFGH
Inorder : In
order traversal a root node is in between its left sub tree and right sub tree.
1. Traverse the left sub tree.
2. Process the root node.
3. Traverse the right sub tree.
O/P: CBAEFDDG
1. Traverse the left sub tree.
2. Traverse the right sub tree.
3. Process the root node.
O/P:CBFEDGA