InterviewSolution
Saved Bookmarks
| 1. |
The post-order traversal of a binary tree is O P Q R S T. Then possible pre-order traversal will be ________(a) T Q R S O P(b) T O Q R P S(c) T Q O P S R(d) T Q O S P RThis interesting question is from Binary Trees topic in division Binary Trees of Data Structures & Algorithms II have been asked this question by my school principal while I was bunking the class. |
|
Answer» Correct answer is (C) T Q O P S R |
|