+3 votes
in Class 12 by kratos

Answer the following questions from the diagram of a Binary Tree given below :

(i) Write the inorder traversal of the above tree structure.

(ii) State the height of the tree, if the root is at level 0 (zero)

(iii) List the leaf nodes of the tree.

1 Answer

+5 votes
by kratos
 
Best answer

(i) In order traversal → left root right G E H C A B F D

(ii) height of the tree = 3

(iii) leaf nodes = G, H, F

...