gpt4 book ai didi

javascript - 在数组中找到它的 2 个邻居之间的最小数字

转载 作者:行者123 更新时间:2023-11-30 21:11:47 25 4
gpt4 key购买 nike

我想执行一个函数,最好是在 forEach 中,为每一个比第二个或倒数第二个数字高或相等的元素交出的每个元素,或者如果它的第一个或最后一个元素与第二个或倒数第二个数字相比。

我想出了这段代码,但我确信有更好的方法:

var Pointdata = [98,59,39,0,48,85,19,43,3,98,65,100];

Pointdata.forEach(function(Current,i,array){

if (Current <= array[i+1] && Current <= array[i-1]) {
DrawPoint(Current,i,array);
}
else if (Current <= array[i+1] && i == 0) {
DrawPoint(Current,i,array);
}
else if(Current <= array[i-1] && i+1 == array.length) {
DrawPoint(Current,i,array);
}

function DrawPoint(Current,i,array) {
// marks peak points of canavas chart.
}

最佳答案

你可以在里面只使用一个条件,Current is a

if ((i + 1 === array.length || a <= array[i + 1]) && (i === 0 || a <= array[i - 1])) {
DrawPoint(a, i, array);
}

关于javascript - 在数组中找到它的 2 个邻居之间的最小数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46060544/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com