1.

For a binary search tree if the pre-order traversal is 1,2,3,5,8,9,6,10,4,7 and the in-order traversal is 2,1,8,5,9,3,10,6,7,4 then which of the following is the post-order traversal of the given tree?

A. 2,8,9,5,10,6,3,4,7,1
B. 2,8,9,5,10,6,3,7,4,1
C. 2,8,9,5,10,3,6,7,4,1
D. 2,8,9,5,1,10,6,3,7,4
Answer» C. 2,8,9,5,10,3,6,7,4,1


Discussion

No Comment Found