JavaScript에서 배열 셔플링은 해당 요소를 무작위 순서로 재배열하는 것을 의미합니다.
Fisher-Yates 셔플 알고리즘의 최신 버전 구현 가능 as:
/** * 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 버전의 알고리즘은 다음과 같이 작성할 수 있습니다.
/** * 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; } });
다음 예에서는 셔플 기능을 사용하는 방법을 보여줍니다.
const myArray = ['1', '2', '3', '4', '5', '6', '7', '8', '9']; shuffle(myArray); console.log(myArray); // Logs a shuffled array
위 내용은 JavaScript에서 배열을 어떻게 섞을 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!