|
|
You are required to construct an AVL tree from
the following data.
(10, 5 , 3 , 15 , 17 , 19 , 21, 25 ,
24 , 22 ).
You need to insert these data items one by one
starting from the data item 10 in the same order in which they have written
above.
You are required to submit only the resultant AVL tree.
|