Math, asked by joshimanali2000, 2 months ago

10
What is post-order traversal of this tree? ​

Answers

Answered by nizamiwajiha
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 parikshittomar81
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