我正在使用 knuth shuffle 来随机化一个数组。我希望能够添加另一个数组并以相同的方式随机化。我之前曾想过将数组分隔在字符串中,例如['A|1|I,B|2|II,C|3|III,D|4|IV']
等。
在stackoverflow上,我读到了这个,但我不知道如何安排它进行knuth shuffle。
这是我目前用来从第一个数组中获取字符串的 JS,附加代码取自上面的链接。
Array.prototype.knuthShuffle = function()
{
var i = this.length, j, temp;
while ( --i )
{
j = Math.floor( Math.random() * (i - 1) );
temp = this[i];
this[i] = this[j];
this[j] = temp;
}
};
var array_chromatic = ['A', 'A%23', 'Bb', 'B', 'C', 'C%23', 'Db', 'D', 'D%23', 'Eb', 'E', 'F', 'F%23', 'Gb', 'G', 'G%23', 'Ab'],
array_chronumb = ['Aa', 'A%23a', 'Bbb', 'Bb', 'Cc', 'C%23c', 'Dbd', 'Dd', 'D%23d', 'Ebe', 'Ee', 'Ff', 'F%23f', 'Gbg', 'Gg', 'G%23g', 'Aba'];
function renderKnuth()
{
array_chromatic.knuthShuffle();
array_chronumb.knuthShuffle();
var audio = document.getElementById('sound');
audio.src = 'url-redacted' + array_chromatic[0] + '.mp3';
var str1 = array_chromatic[0]
str2 = str1.replace("%23", '#');
document.getElementById('knuth_data2').innerHTML = str2;// + array_accidental[0];
document.getElementById('knuth_data3').innerHTML = array_chronumb[0];
}