首页 >web前端 >js教程 >如何在 JavaScript 中打乱数组?

如何在 JavaScript 中打乱数组?

Susan Sarandon
Susan Sarandon原创
2024-12-19 12:07:27313浏览

How Can I Shuffle an Array in JavaScript?

JavaScript 中的数组洗牌

在 JavaScript 中,洗牌数组是指以随机顺序重新排列其元素。

Fisher-Yates 洗牌算法

可以实现现代版本的 Fisher-Yates 洗牌算法为:

/**
 * Shuffles array in place.
 * @param {Array} a items An array containing the items.
 */
function shuffle(a) {
    var j, x, i;
    for (i = a.length - 1; i > 0; i--) {
        j = Math.floor(Math.random() * (i + 1));
        x = a[i];
        a[i] = a[j];
        a[j] = x;
    }
    return a;
}

ES6 版本

ES6 版本的算法可以写为:

/**
 * Shuffles array in place. ES6 version
 * @param {Array} a items An array containing the items.
 */
function shuffle(a) {
    for (let i = a.length - 1; i > 0; i--) {
        const j = Math.floor(Math.random() * (i + 1));
        [a[i], a[j]] = [a[j], a[i]];
    }
    return a;
}

原型方法

使功能更加通用,可以作为原型方法实现array:

Object.defineProperty(Array.prototype, 'shuffle', {
    value: function() {
        for (let i = this.length - 1; i > 0; i--) {
            const j = Math.floor(Math.random() * (i + 1));
            [this[i], this[j]] = [this[j], this[i]];
        }
        return this;
    }
});

使用示例

以下示例演示如何使用 shuffle 功能:

const myArray = ['1', '2', '3', '4', '5', '6', '7', '8', '9'];
shuffle(myArray);
console.log(myArray); // Logs a shuffled array

以上是如何在 JavaScript 中打乱数组?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn