Posts tagged binary-search
Searching and Sorting - Binary Search
The idea behind binary search is that if the array is sorted already then we can minimize the number of comparisons we need to do. We can ignore half of t…
The idea behind binary search is that if the array is sorted already then we can minimize the number of comparisons we need to do. We can ignore half of t…