【发布时间】:2016-10-31 20:11:10
【问题描述】:
我几乎不好意思问这个问题,但无论出于何种原因,我都无法让它发挥作用。这是可汗学院关于二进制搜索的练习。 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);
【问题讨论】:
-
@Liam 谢谢,我刚刚注意到这个答案,但由于某种原因在我最初的搜索中没有。我只是忽略了让 max 大于或等于 min 作为我的 while 条件。我应该删除这个问题吗?
-
您应该可以选择在此任务的顶部将其标记为重复项(黄色带)。如果您觉得这是重复的,您可以点击其中的选项
标签: javascript while-loop binary-search