Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Computer Science Introduction to Algorithms Algorithms in Code Binary Search in Code

Leo Yun Tao
Leo Yun Tao
15,956 Points

Why must the midPoint + 1 or -1

I do not understand why must we minus 1 or add 1 when we are setting the first and the last to be the midPoint?

1 Answer

Dale Severude
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Dale Severude
Full Stack JavaScript Techdegree Graduate 71,349 Points

Hi Leo,

The first condition of our if statement tests if the midpoint is equal to our target. If so, then we are done and the function returns the correct target.

If the midpoint did not equal our target, then we know that we don't need to use the current midpoint anymore because it has already been tested as false. Then it is a simple matter of either adding or subtracting one to our midpoint to begin to use a new untested value as part of our new range of values for the next loop.