Clicker Questions
All of the questions below pertain to the tree below. For each pair of questions, ignore the previous questions – in other words, each pair of questions pertain to this tree and not to the results of previous AVL tree operations.

Question 1: If I insert 72 into the tree, what type of rebalancing operation will I do (answer “zigzig” or “zigzag”)?
Node 80 is imbalanced, and the imbalance goes left-right. So it's zigzag.
Question 2: About which node will I perform the rotation(s)?
Question 3: If I insert 99 into the tree, what type of rebalancing operation will I do (answer “zigzig” or “zigzag”)?
Node 94 is imbalanced, and the imbalance goes right-right. So it's zigzig.
Question 4: About which node will I perform the rotation(s)?
Question 5: If I insert 19 into the tree, what type of rebalancing operation will I do (answer “zigzig” or “zigzag”)?
Node 18 is imbalanced, and the imbalance goes right-left. So it's zigzag.
Question 6: About which node will I perform the rotation(s)?
Question 7: If I delete 94 into the tree, what type of rebalancing operation will I do (answer “zigzig” or “zigzag”)?
Node 90 is imbalanced, and the imbalance goes left-left. So it's zigzig.
Question 8: About which node will I perform the rotation(s)?
Question 9: If I delete 87 into the tree, what type of rebalancing operation will I do (answer “zigzig” or “zigzag”)?
Node 82 is imbalanced, and the imbalance goes left-left. So it's zigzig.
Question 10: About which node will I perform the rotation(s)?
Question 11: If I delete 18 into the tree, what type of rebalancing operation will I do (answer “zigzig” or “zigzag”)?
Node 12 is imbalanced, and this case where the two subtrees of the child (58) are the same height. You treat this as zigzig.
Question 12: About which node will I perform the rotation(s)?