1/11
Loading...
🔍Binary Search Start
Let's find 60 in the sorted array. Binary search halves the search range each step.
Loading...
Let's find 60 in the sorted array. Binary search halves the search range each step.
An algorithm that quickly finds the position of a target value in a sorted array. It is very fast because it halves the search range each time.