Last active
August 25, 2024 23:34
-
-
Save pH-7/349296d4e997f486f32b50e56a8b961e to your computer and use it in GitHub Desktop.
Binary Search
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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