Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- KROK 1
- /* Returns either the index of the location in the array,
- or -1 if the array did not contain the targetValue */
- var doSearch = function(array, targetValue) {
- var min = 0;
- var max = array.length - 1;
- var guess;
- while (min <= max) {
- guess = Math.floor((max+min)/2);
- if (array[guess] === targetValue){
- return guess;
- } else if (array[guess] < targetValue) {
- 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, 71, 73, 79, 83, 89, 97];
- var result = doSearch(primes, 73);
- println("Found prime at index " + result);
- Program.assertEqual(doSearch(primes, 73), 20);
- ==================================================================================================================
- KROK 2
- /* Returns either the index of the location in the array,
- or -1 if the array did not contain the targetValue */
- var doSearch = function(array, targetValue) {
- var min = 0;
- var max = array.length - 1;
- var guess;
- while (min <= max) {
- guess = Math.floor((max+min)/2);
- println(guess);
- if (array[guess] === targetValue){
- return guess;
- } else if (array[guess] < targetValue) {
- 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, 71, 73, 79, 83, 89, 97];
- var result = doSearch(primes, 73);
- println("Found prime at index " + result);
- Program.assertEqual(doSearch(primes, 73), 20);
- ===================================================================================================
- KROK 3
- /* Returns either the index of the location in the array,
- or -1 if the array did not contain the targetValue */
- var doSearch = function(array, targetValue) {
- var min = 0;
- var max = array.length - 1;
- var guess;
- var guessNumber = 1;
- while (min <= max) {
- guess = Math.floor((max+min)/2);
- println(guess);
- if (array[guess] === targetValue){
- println(guessNumber);
- return guess;
- } else if (array[guess] < targetValue) {
- min = guess + 1;
- } else {
- max = guess - 1;
- }
- guessNumber++;
- }
- return -1;
- };
- var primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37,
- 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97];
- var result = doSearch(primes, 73);
- println("Found prime at index " + result);
- Program.assertEqual(doSearch(primes, 73), 20);
- ==================================================================================================
- KROK 4
- /* Returns either the index of the location in the array,
- or -1 if the array did not contain the targetValue */
- var doSearch = function(array, targetValue) {
- var min = 0;
- var max = array.length - 1;
- var guess;
- var guessNumber = 1;
- while(min <= max) {
- guess = Math.floor((max + min)/2);
- println(guess);
- if (array[guess] === targetValue) {
- println(guessNumber);
- return guess;
- } else if (array[guess] < targetValue) {
- min = guess + 1;
- } else {
- max = guess -1;
- }
- guessNumber++;
- }
- return -1;
- };
- var primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37,
- 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97];
- var result = doSearch(primes, 73);
- println("Found prime at index " + result);
- Program.assertEqual(doSearch(primes, 73), 20);
- Program.assertEqual(doSearch(primes, 61), 17);
- Program.assertEqual(doSearch(primes, 89), 23);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement