10
What is post-order traversal of this tree?
Answers
Answered by
5
Answer:
Post-order Traversal
Post-order TraversalIn this traversal method, the root node is visited last, hence the name. First we traverse the left subtree, then the right subtree and finally the root node.
Answered by
0
Answer:
Traverse the left subtree, i.e., call Postorder(left-subtree) 2. Traverse the right subtree, i.e., call Postorder(right-subtree) 3. Visit the root. Uses of Postorder. Postorder traversal is used to delete the tree.
Similar questions
Science,
1 month ago
Social Sciences,
1 month ago
Biology,
1 month ago
Science,
2 months ago
Math,
2 months ago
Social Sciences,
9 months ago
Hindi,
9 months ago