

InterviewSolution
Saved Bookmarks
1. |
Answer the following from the diagram of a Binary Tree is given below:(i) Preorder Transversal of the tree.(ii) Children of node E.(iii) The left subtree of node D.(iv) Height of the tree when the root of the tree is at level 0. |
Answer» (i) A, I, B, C, D, E, G, H, F (ii) G and H (iii) EGH (iv) 4 |
|