Mental Model
Binary search splits a sorted list into halves to quickly find a target by ignoring half the list each time.
Analogy: Imagine looking for a word in a dictionary by opening it in the middle, then deciding to look in the left or right half depending on the word you want.
Sorted array: [1, 3, 5, 7, 9, 11, 13] Indexes: [0, 1, 2, 3, 4, 5, 6] Start -> 0 ↑ End -> 6 Mid -> 3 (value 7)