Menu
Coddy logo textTech

Searching

Watch linear and binary search hunt for a target value step by step — comparisons, halving, and hit/miss outcomes.

Searching comparison

AlgorithmBestAverageWorstSpaceNeeds sorted data?
Linear SearchO(1)O(n)O(n)O(1)No
Binary SearchO(1)O(log n)O(log n)O(1)Yes