Programing

배열을 어떻게 섞을 수 있습니까?

lottogame 2020. 2. 18. 22:36
반응형

배열을 어떻게 섞을 수 있습니까?


가능한 중복 :
자바 스크립트 배열을 무작위로 만드는 방법?

다음과 같이 JavaScript에서 요소 배열을 섞고 싶습니다.

[0, 3, 3] -> [3, 0, 3]
[9, 3, 6, 0, 6] -> [0, 3, 6, 9, 6]
[3, 3, 6, 0, 6] -> [0, 3, 6, 3, 6]

사용 피셔 - 예이츠 셔플 알고리즘의 현대 버전 :

/**
 * 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;
}

ES2015 (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;
}

그러나 2017 년 10 월 기준으로 변수를 소멸 할당 으로 바꾸면 성능이 크게 저하됩니다.

사용하다

var myArray = ['1','2','3','4','5','6','7','8','9'];
shuffle(myArray);

Fisher-Yates Shuffle ( 이 사이트 에서 수정 된 코드)을 사용할 수 있습니다 .

function shuffle(array) {
    let counter = array.length;

    // While there are elements in the array
    while (counter > 0) {
        // Pick a random index
        let index = Math.floor(Math.random() * counter);

        // Decrease counter by 1
        counter--;

        // And swap the last element with it
        let temp = array[counter];
        array[counter] = array[index];
        array[index] = temp;
    }

    return array;
}

참고 URL : https://stackoverflow.com/questions/6274339/how-can-i-shuffle-an-array


반응형