VOOZH about

URL: https://www.geeksforgeeks.org/dsa/insertion-in-an-avl-tree/

⇱ Insertion in an AVL Tree - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Insertion in an AVL Tree

Last Updated : 9 Dec, 2025

AVL tree is a self-balancing Binary Search Tree (BST) where the difference between heights of left and right subtrees cannot be more than one for all nodes. 
Insertion in an AVL Tree follows the same basic rules as in a Binary Search Tree (BST):

  • A new key is placed in its correct position based on BST rules (left < node < right).
  • After the insertion, the balance factor of each node is checked during the path back up to the root. If any node becomes unbalanced (i.e., its balance factor becomes less than -1 or greater than +1), a rotation is required to restore the AVL property.

Example of AVL Tree:

👁 insert-ava1

The above tree is AVL tree because the differences between the heights of left and right subtrees for every node are lies in the range -1 to +1.

Example of a Tree that is NOT an AVL Tree:

👁 Example-of-an-AVL-Tree_-2

The above tree is not an AVL tree because the differences between the heights of the left and right subtrees for 8 and 12 are greater than 1.

Why AVL Trees? Most of the BST operations (e.g., search, max, min, insert, delete, floor and ceiling) take O(h) time where h is the height of the BST. The cost of these operations may become O(n) for a skewed Binary tree. If we make sure that the height of the tree remains O(log(n)) after every insertion and deletion, then we can guarantee an upper bound of O(log(n)) for all these operations. The height of an AVL tree is always O(log(n)) where n is the number of nodes in the tree.

Insertion in AVL Tree:

To make sure that the given tree remains AVL after every insertion, we must augment the standard BST insert operation to perform some re-balancing.  Following are two basic operations that can be performed to balance a BST without violating the BST property (keys(left) < key(root) < keys(right)). 

  • Left Rotation 
  • Right Rotation
👁 Deletion-in-an-AVL-Tree_
keys(T1) < key(x) < keys(T2) < key(y) < keys(T3)

Illustration of Insertion at AVL Tree:


Approach: The idea is to use recursive BST insert, after insertion, we get pointers to all ancestors one by one in a bottom-up manner. So we don't need a parent pointer to travel up. The recursive code itself travels up and visits all the ancestors of the newly inserted node. 

Follow the steps mentioned below to implement the idea:

  • Perform the normal BST insertion.
  • The current node must be one of the ancestors of the newly inserted node. Update the height of the current node. 
  • Get the balance factor (left subtree height - right subtree height) of the current node. 
  • If the balance factor is greater than 1, then the current node is unbalanced and we are either in the Left Left case or left Right case. To check whether it is left left case or not, compare the newly inserted key with the key in the left subtree root
  • If the balance factor is less than -1, then the current node is unbalanced and we are either in the Right Right case or Right-Left case. To check whether it is the Right Right case or not, compare the newly inserted key with the key in the right subtree root.    

Below is the implementation of the above approach:


Output
30 20 10 25 40 50 

Time Complexity: O(logn), for Insertion
Auxiliary Space: O(logn), for recursion call stack as we have written a recursive method to insert

The rotation operations (left and right rotate) take constant time as only a few pointers are being changed there. Updating the height and getting the balance factor also takes constant time. So the time complexity of the AVL insert remains the same as the BST insert which is O(h) where h is the height of the tree. Since the AVL tree is balanced, the height is O(logn). So time complexity of AVL insert is O(logn).

Comparison with Red Black Tree:

The AVL tree and other self-balancing search trees like Red Black are useful to get all basic operations done in O(logn) time. The AVL trees are more balanced compared to Red-Black Trees, but they may cause more rotations during insertion and deletion. So if your application involves many frequent insertions and deletions, then Red Black trees should be preferred. And if the insertions and deletions are less frequent and search is the more frequent operation, then the AVL tree should be preferred over Red Black Tree.

AVL Tree | Set 2 (Deletion)

Comment