Trusted answers to developer questions

What is an AVL tree?

Get Started With Machine Learning

Learn the fundamentals of Machine Learning with this free course. Future-proof your career by adding ML skills to your toolkit — or prepare to land a job in AI or Data Science.

The primary issue with binary search trees is that they can be unbalanced. In the worst case, they are still not more efficient than a linked list, performing operations such as insertions, deletions, and searches in O(n)O(n) time.

Unbalanced binary search trees

AVL trees are a modification of binary search trees that resolve this issue by maintaining the balance factor of each node.

Balance Factor

The balance factor of a node is the difference in the heightThe length of the path from the root node to the tree's deepest descendant. of the left and right sub-tree. The balance factor of every node in the AVL tree should be either +1, 0, or -1. In other words, AVL trees are binary search trees that maintain the following height-balance property for all nodes NN:

Each time a node is inserted into an AVL tree or deleted from an AVL tree, the balance factor of a node(s) may be disrupted (it will lie outside the range [-1, 1], which causes the AVL tree to become unbalanced). The examples below demonstrate this:

AVL tree becoming unbalanced after insertion and deletion operations. The balance factor of each node is written on top of it.

Types of imbalances

Four types of imbalances can occur in an AVL tree via the insertion or deletion of a node(s). These are:

  • Right-right imbalance: It occurs when the right sub-tree of a node’s right child is heavier than the node’s own left sub-tree. This is indicated by the balance factor of the unbalanced node being -2 and the balance factor of its right child being 0 or -1.
Right-Right imbalance
  • Right-left imbalance: It occurs when the left sub-tree of a node’s right child is heavier than the node’s own left sub-tree. This is indicated by the balance factor of the unbalanced node being -2 and the balance factor of its left child being 1.
Right-Left imbalance
  • Left-left imbalance: It occurs when the left sub-tree of a node’s left child is heavier than the node’s own right sub-tree. This is indicated by the balance factor of the unbalanced node being 2 and the balance factor of its left child being 0 or 1.
Left-Left imbalance
  • Left-right imbalance: It occurs when the right sub-tree of a node’s left child is heavier than the node’s own right sub-tree. This is indicated by the balance factor of the unbalanced node being 2 and the balance factor of its right child being -1.
Left-Right imbalance

To deal with each type of imbalance and fix it, AVL trees can perform rotations. These rotations involve switching around positions of the unbalanced node's sub-tree(s) to restore the balance factor of all affected nodes.

By maintaining this balancing factor for each node, AVL trees allow the primary operations of a binary search tree (insert, delete, search) to run efficiently in O(log(n))O(log(n)) time in the worst case.

RELATED TAGS

avl
binary tree
Copyright ©2024 Educative, Inc. All rights reserved
Did you find this helpful?