A new breakdown every week — read the newsletter →
PeopleBusinessesToolsNewsletter
StrategiesMental ModelsDecision ToolsBusiness ModelsFrameworksMoats
LearnBook SummariesReading ListsGuidesQuote Collections
Artificial Intelligence Learning PathsWhat should I study? AboutContact
Mental Model

Binary Search

BS
Computer Science & Algorithms

search finds a target in a sorted sequence by repeatedly halving the search space: compare to the middle element, then search only the half that can contain the answer....

The core idea

search finds a target in a sorted sequence by repeatedly halving the search space: compare to the middle element, then search only the half that can contain the answer....

Connected