Mental Model
Linear search checks each item one by one, while binary search jumps to the middle and cuts the search space in half each time.
Analogy: Looking for a name in a phone book: linear search is reading every name from start to end, binary search is opening the book in the middle and deciding which half to look next.
Array: [1] -> [3] -> [5] -> [7] -> [9] -> [11] -> [13] -> null Linear Search: ↑ starts at first element Binary Search: ↑ starts at middle element