AVL Tree Smt Genap
Outline AVL Tree ◦ Definition ◦ Properties ◦ Operations Smt Genap
AVL Trees Unbalanced Binary Search Trees are bad. Worst case: operations take O(n). AVL (Adelson-Velskii & Landis) trees maintain balance. For each node in tree, height of left subtree and height of right subtree differ by a maximum of 1. Smt Genap XX H H-1 H-2
AVL Trees Smt Genap
AVL Trees Smt Genap
Insertion for AVL Tree After insert 1 Smt Genap
Insertion for AVL Tree To ensure balance condition for AVL-tree, after insertion of a new node, we back up the path from the inserted node to root and check the balance condition for each node. If after insertion, the balance condition does not hold in a certain node, we do one of the following rotations: ◦ Single rotation ◦ Double rotation Smt Genap
Insertions Causing Imbalance An insertion into the subtree: ◦ P (outside) - case 1 ◦ Q (inside) - case 2 An insertion into the subtree: ◦ Q (inside) - case 3 ◦ R (outside) - case 4 Smt Genap R P Q k1k1 k2k2 Q k2k2 P k1k1 R H P =H Q =H R
Single Rotation (case 1) Smt Genap A k2k2 B k1k1 C CB A k1k1 k2k2 H A =H B +1 H B =H C
Single Rotation (case 4) Smt Genap C k1k1 B k2k2 A AB C k2k2 k1k1 H A =H B H C =H B +1
Problem with Single Rotation Single rotation does not work for case 2 and 3 (inside case) Smt Genap Q k2k2 P k1k1 R R P Q k1k1 k2k2 H Q =H P +1 H P =H R
Double Rotation: Step Smt Genap C k3k3 A k1k1 D B k2k2 C k3k3 A k1k1 D B k2k2 H A =H B =H C =H D
Double Rotation: Step Smt Genap C k3k3 A k1k1 D B k2k2
Double Rotation Smt Genap C k3k3 A k1k1 D B k2k2 C k3k3 A k1k1 D B k2k2 H A =H B =H C =H D
Double Rotation Smt Genap B k1k1 D k3k3 A C k2k2 B k1k1 D k3k3 A C k2k2 H A =H B =H C =H D
Example Insert 3 into the AVL tree Smt Genap
Example Insert 5 into the AVL tree Smt Genap
AVL Trees: Exercise Insertion order: ◦ 10, 85, 15, 70, 20, 60, 30, 50, 65, 80, 90, 40, 5, 55 Smt Genap
Remove Operation in AVL Tree Removing a node from an AVL Tree is the same as removing from a binary search tree. However, it may unbalance the tree. Similar to insertion, starting from the removed node we check all the nodes in the path up to the root for the first unbalance node. Use the appropriate single or double rotation to balance the tree. May need to continue searching for unbalanced nodes all the way to the root. Smt Genap
Deletion X in AVL Trees Deletion: ◦ Case 1: if X is a leaf, delete X ◦ Case 2: if X has 1 child, use it to replace X ◦ Case 3: if X has 2 children, replace X with its inorder predecessor (and recursively delete it) Rebalancing Smt Genap
Delete 55 (case 1) Smt Genap
Delete 55 (case 1) Smt Genap
Delete 50 (case 2) Smt Genap
Delete 50 (case 2) Smt Genap
Delete 60 (case 3) Smt Genap prev
Delete 60 (case 3) Smt Genap
Delete 55 (case 3) Smt Genap prev
Delete 55 (case 3) Smt Genap
Delete 50 (case 3) Smt Genap prev
Delete 50 (case 3) Smt Genap
Delete 40 (case 3) Smt Genap prev
Delete 40 : Rebalancing Smt Genap Case ?
Delete 40: after rebalancing Smt Genap Single rotation is preferred!
Minimum Element in AVL Tree An AVL Tree of height H has at least F H+3 -1 nodes, where F i is the i-th fibonacci number S 0 = 1 S 1 = 2 S H = S H-1 + S H Smt Genap S H-1 S H-2 H H-1 H-2
AVL Tree: analysis (2) The depth of AVL Trees is at most logarithmic. So, all of the operations on AVL trees are also logarithmic. Smt Genap
Summary Find element, insert element, and remove element operations all have complexity O(log n) for worst case Insert operation: top-down insertion and bottom up balancing Smt Genap
Further Study Section 19.4 of Weiss book Smt Genap