

InterviewSolution
Saved Bookmarks
1. |
Answer the following from the diagram of the Binary Tree given below:(i) The root of the tree. (ii) Left subtree(iii) Inorder traversal of the tree (iv) Size of the tree. |
Answer» (i) A (ii) B, C, F, D, G, E, H (iii) C, D, E, B, G, H, F, A, K, L, J (iv) 11 |
|