Be the first user to complete this post

  • 0
Add to List
Hard

100. AVL Tree - Insertion

What is AVL Tree :

AVL tree is widely known as self-balancing binary search tree. It is named after its creator (Georgy Adelson-Velsky and Landis' tree). In AVL Tree, the heights of child subtrees at any node differ by at most 1. At anytime if height difference becomes greater than 1 then tree balancing is done to restore its property.

Search, Insertion and deletion, all operations takes O(logn) time since the tree is balanced.

Why AVL Tree is better than normal Binary Search Tree:

Average time complexity in binary search tree for any operation takes O(logn) time but there are times when your tree is skewed. In those cases the operations on them takes O(n) time but in AVL Tree, since it is always balanced, it always takes O(logn) time.

How Tree balanced itself:

There are two basic operations, using which tree balanced itself.

  1. Left Rotation
  2. Right Rotation.
AVL Rotations

How These Rotation works to balance the tree:

  1. Let 'A' be the new node added to the tree.
  2. Once 'A' is added, start travelling up from 'A' to root and find the unbalanced node, balance it and again keep traveling up.
  3. Say you have found the node z which is unbalanced.
  4. Node y is the child of z and x be the grandchild of z.

Then there will be four possibilities

  1. Left-Left Case : - x is the left child of y and y is the left child of z.
  2. Left-Right Case : - x is the right child of y and y is the left child of z.
  3. Right-Left Case : - x is the left child of y and y is the right child of z.
  4. Right-Right Case : - x is the right child of y and y is the right child of z.

Left-Left Case : - x is the left child of y and y is the left child of z.

Left-Left Case

Left-Right Case : - x is the right child of y and y is the left child of z.

Right-Left Case : - x is the left child of y and y is the right child of z.

Right-Right Case : - x is the right child of y and y is the right child of z.

Right-Right

Insertion Operation:

  1. Insert the new Node using recursion so while backtracking you will all the parent's nodes to check whether they are still balanced or not.
  2. Every node has a field called height with a default value of 1.
  3. When a new node is added, its parent's node height get increased by 1.
  4. So as mentioned in step 1, every ancestor's height will get updated while backtracking to the root.
  5. At every node, the balance factor will also be checked. balance factor = (height of left Subtree - the height of right Subtree).
  6. If balance factor =1 means the tree is balanced at that node.
  7. If balance factor >1 means the tree is not balanced at that node, left height is more than the right height so that means we need rotation. (Either Left-Left Case or Left-Right Case).
  8. Say the current node which we are checking is X and If the new node is less than the X.left then it will be the Left-Left case, and if the new node is greater than the X.left then it will be the Left-Right case. see the pictures above.
  9. If balance factor <-1 means the tree is not balanced at that node, right height is more than the left height so that means we need rotation. (Either Right-Right Case or Right- Left Case)
  10. Say the current node which we are checking is X and If the new node is less than the X.right then it will be Right-Right case, and if the new node is greater than the X.right then it will be Right-Left case. see the pictures above.

Code:


Output:

Inorder Traversal of Constructed AVL Tree : 1 2 4 5 6 9 10 11 14 20
 New Root of AVL Tree is : 5