Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

GATE | GATE CS 2013 | Question 43

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The preorder traversal sequence of a binary search tree is 30, 20, 10, 15, 25, 23, 39, 35, 42. Which one of the following is the postorder traversal sequence of the same tree?
(A) 10, 20, 15, 23, 25, 35, 42, 39, 30
(B) 15, 10, 25, 23, 20, 42, 35, 39, 30
(C) 15, 20, 10, 23, 25, 42, 35, 39, 30
(D) 15, 10, 23, 25, 20, 35, 42, 39, 30


Answer: (D)

Explanation: In order to construct a binary tree from given traversal sequences, one of the traversal sequence must be Inorder. The other traversal sequence can be either Preorder or Postorder. We know that the Inorder traversal of Binary Search Tree is always in ascending order so the Inorder Traversal would be the ascending order of given Preorder traversal i.e 10, 15, 20, 23, 25, 30, 35, 39, 42.Now we have to construct a tree from given Inorder and Preorder traversals.

parul_12

References:
https://www.geeksforgeeks.org/construct-tree-from-given-inorder-and-preorder-traversal/
https://www.geeksforgeeks.org/data-structures-and-algorithms-set-31/

This solution is contributed by Parul sharma.


Quiz of this Question

My Personal Notes arrow_drop_up
Last Updated : 14 Feb, 2018
Like Article
Save Article
Similar Reads