uccser/cs-field-guide

View on GitHub
csfieldguide/chapters/content/en/glossary/binary-search.md

Summary

Maintainability
Test Coverage
# Binary search

Searching a sorted list by looking at the middle item, and then searching the appropriate half recursively (used for phone books, dictionaries and computer algorithms).