Teaching UGC NET Mock Test Series 2025 (Paper 1 & 2) Programming and Data Structure Tree Tree Traversal
Postorder traversal of a given binary search tree T produces following sequence of keys: 3, 5, 7, 9, 4, 17, 16, 20, 18, 15, 14 Which one of the following sequences of keys can be the result of an in-order traversal of the tree T?
1
3, 4, 5, 7, 9, 14, 20, 18, 17, 16, 15
2
20, 18, 17, 16, 15, 14, 3, 4, 5, 7, 9
3
20, 18, 17, 16, 15, 14, 9, 7, 5, 4, 3
4
3, 4, 5, 7, 9, 14, 15, 16, 17, 18, 20