Open In App

What is AVL Tree | AVL Tree meaning

An AVL is a self-balancing Binary Search Tree (BST) where the difference between the heights of left and right subtrees of any node cannot be more than one.

 

KEY POINTS

Characteristics of AVL Tree:

Application of AVL Tree:

Advantages of AVL Tree:

Disadvantages of AVL Tree:

Maximum & Minimum number of Nodes

Maximum number of nodes = 2H+1  – 1

Minimum number of nodes of height H = min no of nodes of height (H-1) + min no of nodes of height(H-2) + 1

where H(0)=1

              H(1)=2

What else can you read?

Article Tags :