반응형
배열을 어떻게 섞을 수 있습니까?
가능한 중복 :
자바 스크립트 배열을 무작위로 만드는 방법?
다음과 같이 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
반응형
'Programing' 카테고리의 다른 글
node_modules에 로컬로 설치된 패키지를 사용하는 방법은 무엇입니까? (0) | 2020.02.18 |
---|---|
상대 레이아웃의 백분율 너비 (0) | 2020.02.18 |
MS SQL Server와 작동하는 Mac OS X 용 SQL 클라이언트 (0) | 2020.02.18 |
Java 7에서 다이아몬드 연산자 (<>)의 요점은 무엇입니까? (0) | 2020.02.18 |
장고에서 비즈니스 로직 및 데이터 액세스 분리 (0) | 2020.02.18 |