Depending on Incoming data, A Binary Search tree can get skewed and hence its performance starts going down. Instead of O(log n) for insertion/searching/deleting it can go up to O(n)
AVL tree attempts to solve this problem of ‘skewing’ by introducing concept called ‘Rotation’.
What is AVL Tree?
An AVL tree is a balanced ‘Binary Search Tree’ where the height of immediate subtrees of any node differs by at most one(also called balance factor).
If at any time heights differ by more than one, rebalancing is done to restore this property(called rotation).
Empty height is always considered -1.
Algorithm of AVL Tree
create, search, traverse Algorithm is totally same as the BST.
Insertion of node in AVL Tree
Case#1 - Whene ‘rotation’ is not required.
The algorithm is same as the BST Insertion.
Case#2 - When ‘rotation is required(LL, LR, RR, RL).
Left-Left Condition
What is Left-Left condition?
Left-Left Node from currentNode is causing disbalance.
if(valueToBeDeleted < currentNode.value) then currentNode.left = deleteNodeOfAVL(currentNode.left, valueToBeDeleted) else if(valueToBeDeleted > currentNode.value) then currentNode.right = deleteNodeOfAVL(currentNode.right, valueToBeDeleted) else //if the currentNode is the node to be deleted if currentNode have both children, then find minimum element from right subtree(Case#3) replace current node with minimum node from right subtree and delete minimum node from right
else if nodeToBeDeleted has only left child(Case#2) then currentNode = currentNode.left else if nodeToBeDeleted has only right child (Case#2) then currentNode = currentNode.right else //if nodeToBeDeleted do not have child(Case#1) currentNode = null;
int balance = checkBalance(currentNode.left, currentNode.right);