javascript - 使用 while 语句进行二分查找

标签 javascript while-loop binary-search

我几乎不好意思问这个问题,但出于某种原因我无法让它发挥作用。这是可汗学院关于二分搜索的练习。 https://www.khanacademy.org/computing/computer-science/algorithms/binary-search/p/challenge-binary-search

任何帮助将不胜感激!谢谢!

编辑:我应该编辑这个,说我从可汗学院收到的错误消息是“看起来你在 while 循环上几乎有正确的条件,但仍然有问题。”这并不是特别有帮助。

/* 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(max > min) {
        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);

最佳答案

更改此:

while(max > min)

while(max >= min)

关于javascript - 使用 while 语句进行二分查找,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40341856/

相关文章:

python - 二叉树解释为什么这样做

c# - 如何在排序数组中定位一个点?

javascript - 为什么this在一个JS类方法中定义调用的函数中是未定义的。我希望这是窗口

javascript - ObservableArray.push() 触发点击事件

javascript - 尝试使用输入值打印 Javascript 数组

Javascript 压扁深层嵌套的子项

c - 无法在 while 循环中通过指针传递值

javascript - let、const 的托管

javascript - 即使启用了 Javascript,也能调用 <noscript> 吗?

java - 如何通过二分搜索搜索 ArrayList 中的任何值