Mental Model
Binary search finds a number by repeatedly cutting the search area in half until the number is found or no area remains.
Analogy: Imagine looking for a word in a dictionary by opening it in the middle, then deciding if you should look in the left or right half, and repeating this until you find the word.
Array: [1, 3, 5, 7, 9, 11, 13] Indexes: 0 1 2 3 4 5 6 Pointers: low ↑ high ↑ Middle: mid ↑