Skip to content
Advertisement

Buggy simple function for binary search (C++)

I wrote a simple function for binary search, but it’s not working as expected. I have a vector with 4000000 32-bit ints. Usually, when I search for a number, if it’s there, it’s found and the index is returned, if it’s not, -1 is returned (the index always corresponds to the value, but that’s not the point).

While messing around with the program I found out that it can’t find 93 (even though it’s there), obviously, there must be more values it can’t find.

I use CLion, which implements GDB as the debugger and G++ as the compiler.

JavaScript

I’m pretty confused by this, what’s wrong?

Advertisement

Answer

Condition should be while (low <= high).

If you keep it as while (low < high), then when low==high (means we reach the final element), while loop will break and will return -1. So,your program wont check that element.

Also you should use mid=low+(high-low)/2; to prevent overflow and access all values.
Problem in your code is that suppose when low=high=1, it will give mid =0(due to data conversion), which is wrong.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement