AVL Trees (Adelson-Velsky and Landis Trees)

A Self-Balancing Binary Search Tree

What is an AVL Tree?

An AVL Tree is a self-balancing binary search tree that ensures balance by performing rotations.

Main Properties of an AVL Tree

Common Operations

Insertion

  1. Insert node using BST rules → If smaller, go left; if larger, go right
  2. Update height of each ancestor → Height = 1 + max(left height, right height)
  3. Calculate balance factor → BF = height(subtree left) - height(subtree right)
  4. Check imbalance → If BF ∉ [-1, 0, 1], tree is unbalanced
  5. Determine rotation type if unbalanced
  6. Apply any necessary rotations → Restore balance while moving up the tree
  7. Repeat until root is balanced → Ensure entire tree is balanced before stopping

Diagram of AVL Tree vs. Regular BST

AVL and Binary Tree Comparison

Further Reading

Learn more about AVL Trees: