gpt4 book ai didi

Javascript 循环行为

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:36:27 24 4
gpt4 key购买 nike

alltones 数组包含音阶中所有可能的音符。

var alltones = ["C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "A", "A#", "B" ];

我想获取用户输入的一个音调,然后构建一个包含数组某些元素的列表。

假设我从 alltones[5]"F" 开始,并希望从该点开始获取数组的第二个元素并将其放入我的列表中,直到我回到 "F"。该数组更像是一个圆而不是直线列表。我有点不确定一旦循环到达最后一个元素,数组将如何运行。

我是否通过根据用户输入生成一个新数组来解决问题。或者有没有一种方法让 JavaScript 知道在数组到达末尾时循环回到数组的开头,从而将数组视为一个圆圈?

一个例子:用户输入 = F
我正在寻找的输出是从 F 开始计数(每两个项目),直到我们回到数组到 F
所以所需的输出将是 => F G A B C# D#

最佳答案

没有 existing Array method做你想做的事,但使用 Array.prototype.slice 很容易定义一个和 Array.prototype.concat :

// move i elements from the start of the array to the end of the array
Array.prototype.lcycle = function(i) {
var xs = this.slice(0,i);
var ys = this.slice(i);
return ys.concat(xs)
};
// move i elements from the end of the array to the start of the array
Array.prototype.rcycle = function(i) {
var xs = this.slice(0,-i);
var ys = this.slice(-i);
return ys.concat(xs);
};

然后你可以像普通数组方法一样使用lcyclercycle:

>>> alltones.lcycle(3)
[ "D#" , "E" , "F" , "F#" , "G" , "G#" , "A" , "A#" , "B" , "C" , "C#" , "D" ]
>>> alltones.rcycle(4)
[ "G#" , "A" , "A#" , "B" , "C" , "C#" , "D" , "D#" , "E" , "F" , "F#" , "G" ]

请注意,这两种方法都返回一个新数组。如果你想改变原始数组,你可以使用 Array.prototype.splice 定义类似的方法。 .

// move i elements from the start of the array to the end of the array, mutating the original array
Array.prototype.lcycle_m = function(i) {
var args = this.splice(0,i);
args.unshift(0);
args.unshift(this.length);
this.splice.apply(this, args);
};
// move i elements from the end of the array to the start of the array, mutating the original array
Array.prototype.rcycle_m = function(i) {
var args = this.splice(-i);
args.unshift(0);
args.unshift(0);
this.splice.apply(this, args);
};

同样,您可以将 lcycle_mrcycle_m 用作普通数组方法:

>>> alltones.lcycle_m(3)
>>> alltones
[ "D#" , "E" , "F" , "F#" , "G" , "G#" , "A" , "A#" , "B" , "C" , "C#" , "D" ]
>>> alltones.rcycle_m(3)
>>> alltones
[ "C" , "C#" , "D" , "D#" , "E" , "F" , "F#" , "G" , "G#" , "A" , "A#" , "B" ]

关于Javascript 循环行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14789157/

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