Professor Abdul-Quader
Lesson 8 (AVL Trees / Hashtable Intro)
Finishing presentations today.
insert
or remove
, rebalance.private TreeNode<T> balance(TreeNode<T> subtree) {
int balance = height(subtree.left) - height(subtree.right);
if (balance > 1) {
// left-left
if (height(subtree.left.left) >= height(subtree.left.right)) {
subtree = rotateRight(subtree);
} else {
// left-right
// left rotation turns this into left-left
subtree.left = rotateLeft(subtree.left);
// right rotation rebalances
subtree = rotateRight(subtree);
}
} else if (balance < -1) {
// right-right or right-left?
// do the opposite as above
}
// update height
subtree.height = 1 + Math.max(height(subtree.left), height(subtree.right));
return subtree;
}
In the above video, I go through the proof that all the operations are \(O(\log(n))\) on an AVL tree.
Given a tree T, output its nodes in level-order. That is, output the root first, then output the root’s children, then the grandchildren, etc.
Hint:
Implement a method in the AVL Tree class which returns a List of items in sorted order:
Asymptotic running time (if the tree has \(N\) elements)?
Asymptotic running time of the following:
Due Thursday, March 6 on BrightSpace. Submit a single PDF file.
findKth(int k)
method. This method should return the \(k\)-th smallest element of the tree in \(O(\log(N))\) time (on average if it’s a BST, or always if it’s an AVL tree). You do not need to write actual code here, but you do need to explain the algorithm, and what changes need to be made to the tree / node classes to support this.