InterviewSolution
Saved Bookmarks
| 1. |
Consider the following AVL tree. 60 / \ 20 100 / \ 80 120 Which of the following is updated AVL tree after insertion of 70A 70 / \ 60 100 / / \ 20 80 120 B 100 / \ 60 120 / \ / 20 70 80 C 80 / \ 60 100 / \ \ 20 70 120D 80 / \ 60 100 / / \ 20 70 120 (A) A(B) B(C) C(D) D |
| Answer» None | |