Process-Scheduling
October 11, 2023Java-Script
October 11, 2023Data-Structures
|
Question 37
|
Draw the binary tree with node labels a, b, c, d, e, f and g for which the inorder and postorder traversals result in the following sequences:
Inorder a f b c d g e Postorder a f c g e d b
|
Theory Explanation.
|
Correct Answer: A
