Skip to content

Instantly share code, notes, and snippets.

@pH-7
Last active January 10, 2019 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pH-7/349296d4e997f486f32b50e56a8b961e to your computer and use it in GitHub Desktop.
Save pH-7/349296d4e997f486f32b50e56a8b961e to your computer and use it in GitHub Desktop.
Binary Search
function doSearch(array, targetValue) {
var min = 0;
var max = array.length - 1;
var guess;
while (max >= min) {
guess = Math.floor((max + min) / 2 );
if (targetValue === array[guess]) {
return guess;
} else if (targetValue > array[guess]) {
min = guess + 1;
} else {
max = guess - 1;
}
}
return -1;
}
var primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37,
41, 43, 47, 53, 59, 61, 67, 75, 71, 79, 83, 89, 97];
var result = doSearch(primes, 75);
println("Found prime at index " + result);
Program.assertEqual(doSearch(primes, 75), 21);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment