Running time

  • Recognize the speed difference between linear search and binary search

For binary search, like linear search, the best case is when we get lucky, and the first value we look at is the target value. But let's consider the worst-case: the target element is not to be found.

Assume the array has $n$ elements. For some random target value (which is not in the array), we look at the value in the middle and eliminate about half of the numbers. We repeat this process again and again until there is one element left. The question is, how many steps it will take us to get to that last element.

Demo

The following slides assist in building an intuition for the answer:

At each step, as can be seen from the demo, we reduce the search space by a factor proportional to the inverse of 2 raised to the power of step. So, the total number of steps Binary search takes to finish its search, $x$, is proportional to the $\log_2 n$.

Note on notation

In this class I use the notation $\lg x$ for binary logarithm $\log_2 x$.

Resources