vote up 3 vote down star
1

Binary search is harder to implement than it looks. "Although the basic idea of binary search is comparatively straightforward, the details can be surprisingly tricky…" — Donald Knuth.

Which bugs are most likely to be introduced into a new binary search implementation?

flag

If you've written enough binary searches, you won't be asking this question. :-) – ShreevatsaR Feb 2 at 21:18
Now you know my secret shame. – joeforker Feb 2 at 21:22

4 Answers

vote up 8 vote down check

Here are some I can think of:

  • Off-by-one errors, when determining the boundary of the next interval
  • Handling of duplicate items, if you are suppose to return the first equal item in the array but instead returned a subsequent equal item
  • Numerical underflows/overflows when computing indices, with huge arrays
  • Recursive vs non-recursive implementation, a design choice you should consider

Are these what you have in mind?

link|flag
vote up 7 vote down

If you have Programming Pearls book nearby, you should check chapter 4.

edit2: As pointed out in the comments, you can download the draft chapter I mentioned the Author's website: http://www.cs.bell-labs.com/cm/cs/pearls/sketch04.html

link|flag
it's referenced in the wikipedia article, too - en.wikipedia.org/wiki/Binary_search#The_algorithm/… – warren Feb 2 at 19:12
The whole book isn't available on Bentley's website, but the information from that chapter seems complete enough. The site has "sketches" of some chapters, and some chapters are just missing. Buy the book, though. It's worth it. – Bill the Lizard Feb 2 at 19:22
@Bill: I do have the book, it's great. – Tiago Feb 2 at 20:20
vote up 4 vote down

Read this. Java's binary search implementation hid a bug for almost a decade before anybody found it.

The bug is integer overflow. It didn't cause people problems because hardly anyone was searching big enough data structures.

link|flag
That bug is awesome. – joeforker Feb 2 at 19:48
vote up 0 vote down

Failing to consider that when calculating the midpoint between two indices summing the high and low values may result in integer overflow.

Reference

link|flag
Humbling. The programmer was trying to implement binary search and cannot correctly do something as apparently simple as taking the average two numbers. – joeforker Feb 3 at 14:44

Your Answer

Get an OpenID
or

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