0
2.3kviews
Insert the following elements in AVL tree:44, 17, 32, 78, 50, 88, 48, 62, 54.Explain different rotations that can be used
1 Answer
| written 7.2 years ago by | modified 7.2 years ago by |
An AVL tree is a binary search tree which has the following properties:-
a. The sub-trees of every node differ in height by at most one.
b. Every sub-tree is an AVL tree.
c. Each node in the AVL Tree possesses any one of the following properties:
d. A node …