01
Balanced BST — the arrival order interleaved
What you know: Plain BST mode, no rotations. The values arrive middle-first, so each new key drops into a subtree that is still short and no side gets ahead of the other.
What it costs: h = 3 = ⌈log₂(n + 1)⌉
Worked example: 50, 30, 70, 20, 40, 60, 80 → root 50, 7 nodes, height 3 — exactly the ideal ⌈log₂(7+1)⌉ = 3, so the deepest search costs 3 comparisons
Open this case: Balanced