Explain the defferences with example among in order pre oder and post oder traversal of binary tree.
Answers
Answered by
0
Answer:
Preorder Traversal (current-left-right)— Visit the current node before visiting any nodes inside left or right subtrees. ... Postorder Traversal (left-right-current) — Visit the current node after visiting all the nodes of left and right subtrees.
Similar questions