This may be a silly question, but does anyone know of a proof that binary search is asymptotically optimal? That is, if we are given a sorted list of elements where the only permitted operation on those objects is a comparison, how do you prove that the search can't be done in o(lg n)? (That's little-o of lg n, by the way.) Note that I'm restricting this to elements where the only operation permitted operation is a comparison, since there are well-known algorithms that can beat O(lg n) on expectation if you're allowed to do more complex operations on the data (see, for example, interpolation search).

Thanks so much! This has really been bugging me since it seems like it should be simple but has managed to resist all my best efforts. :-)

link|improve this question

Is this homework? – Bernard Dec 31 '10 at 17:45
You're also assuming uniform access to all elements? Else see en.wikipedia.org/wiki/Fibonacci_search_technique – Paul Dec 31 '10 at 17:46
@Bernard - nope, not a homework assignment. I have my standards. :-) This is just something that's been bugging me for a while. – templatetypedef Dec 31 '10 at 17:50
@Paul - I'm looking for an algorithm that minimizes the number of comparisons, so the access time for each element should be irrelevant. Also, to the best of my knowledge Fibonacci search is also O(lg n), which is asymptotically equivalent to binary search. – templatetypedef Dec 31 '10 at 17:51
Can there be duplicates in your array? – Paul Dec 31 '10 at 17:54
show 3 more comments
feedback

3 Answers

up vote 2 down vote accepted

From here:

  • The number of possible outcomes should be at least O(n).
  • You can represent the decisions done by the algorithm by nodes of a "decision tree": if the items compare greater then it goes on way, if not it goes the other way. The nodes of the tree are the states of the algorithm and the leaves are the outcomes. So there should be at least O(n) nodes in the tree.
  • Each tree on O(n) nodes has at least O(log N) levels.
link|improve this answer
That's very clever - I didn't think of representing the state of the algorithm as a tree. This makes perfect sense; thanks so much! – templatetypedef Dec 31 '10 at 17:55
@template: AFAIK optimality of heapsort/mergesort is also proven in similar way. – ybungalobill Dec 31 '10 at 17:59
Could I suggest a bit more precision: Assuming all n elements are distinct, there are exactly n+1 possible outcomes (since the target value may not exist), so there are exactly n+1 leaves (not nodes). A tree on n+1 leaves has at least log2(n+1) levels. Maybe you're correct to say "Each tree on O(n) nodes has at least O(log n) levels" but I find it hard to reason about O() when it's on both sides of the equation like that... :) – j_random_hacker Jan 1 '11 at 7:31
feedback

The logic is simple. Let's assume we have array of n different sorted elements.

  1. There're 2 possible outcomes of 1 comparison (first element is smaller or greater). Thus, if one comparison is enough, n <= 2. Otherwise, if we have 3 elements (a, b, c) and our algorithm has 2 possible outcomes, one of 3 elements will never be selected.
  2. There're 4 possible outcomes of 2 comparisons. Thus, if 2 comparisons is enough, n <= 4.
  3. Likewise, for k comparisons to be enough n should be n <= 2^k.

Reverse the last inequality and you'll have logarithm: k >= log(2, n).

link|improve this answer
It looks like you prove the upper bound here. – ybungalobill Dec 31 '10 at 17:51
Does this change if there are duplicated elements? – Paul Dec 31 '10 at 17:52
Does this really work as a lower-bound proof? You've correctly shown that you can look up an element in O(lg n) time, but have you precluded the possibility of an asymptotically faster algorithm? – templatetypedef Dec 31 '10 at 17:52
@templatetypedef I've added the last step, it should be clear now. – Nikita Rybak Dec 31 '10 at 17:54
1  
@Paul 'Without duplicated elements' is a special case of original problem. If there's no better solution for special case, there's no better solution for the whole problem too. – Nikita Rybak Dec 31 '10 at 17:58
show 2 more comments
feedback

As Nikita described it's impossible to have something always better than O(log n).

Even if you allowed to do some additional operations, it's still not enough - I'm sure it's possible to prepare elements sequence where interpolation search will perform worse than binary search.

We can say interpolation search is better only because:

  1. We consider average performance, not worst case.
  2. Probability of each possible incoming data set is non-uniform.

So the answer is - it all depends on the additional knowledge we have about incoming data sets.

link|improve this answer
1  
With additional knowledge there may be pretty much everything. If you sort your elements by probability, and the probability is geometric distribution, then even linear search can perform in O(1) time! Btw, it's a good idea, sometimes. – ybungalobill Dec 31 '10 at 18:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.