0
4.6kviews
Explain AVL trees. Insert the following elements in a AVL search tree: 63, 52, 49, 83, 92, 29, 23, 54, 13, 99
1 Answer
3
364views
  1. 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 …

Create a free account to keep reading this post.

and 3 others joined a min ago.

Please log in to add an answer.