Professor Abdul-Quader
Lesson 6 (Trees / Rotations)
Start with problem presentations.
Project hints / questions?
Today:
Binary search:
boolean
Exercise (Might be homework at some point): Suppose \(T\) is a complete binary tree of height \(h\) and the last level is completely filled. Then \(T\) has exactly \(2^{h+1} - 1\) nodes.
Therefore: a complete binary tree of height \(h\) has between \(2^h\) and \(2^{h+1} - 1\) nodes. That is:
Remember, the running times are all based on the height of the tree. Given a tree with \(N\) nodes, what’s the worst possible height of such a tree? What insertion order gives that height?
Next topic: trees that are self-balancing, which will prevent the tree from getting too unbalanced.
L = root.left
root.left = L.right
L.right = root
return L
Makes L the new root of this subtree.
Similar idea:
R = root.right
root.right = R.left
R.left = root
return R
What does an “unbalanced” tree look like?
Some unbalanced trees can be rebalanced easily:
Forget about the code for a bit. What should a self-balancing tree do when we insert in the following order: 1, 2, 3, 4, 5, 6, 7?
Draw the pictures of the BSTs that result. When do we trigger a “rebalancing”?