Mental Model
We build a tree by picking the middle element as root so both sides are balanced.
Analogy: Imagine dividing a sorted list of books evenly on a shelf by picking the middle book first, then doing the same for left and right halves to keep the shelf balanced.
Sorted array: [1, 2, 3, 4, 5, 6, 7]
Balanced BST:
4
/ \
2 6
/ \ / \
1 3 5 7