ソートの選択
8635 ワード
解答前の解答
function solution(unsorted) {
function swap(former, latter) {
const temp = unsorted[former];
unsorted[former] = unsorted[latter];
unsorted[latter] = temp;
}
for (let i = 0; i < unsorted.length; i++) {
for (let j = i; j < unsorted.length; j++)
if (unsorted[j] > unsorted[j + 1]) swap(j, j + 1);
}
return unsorted;
}
const result = solution([13, 5, 11, 7, 23, 15]);
console.log(result);
答えはBubbleソートに近いが、講義
function solution(unsorted) {
for (let i = 0; i < unsorted.length - 1; i++) {
let min = unsorted[i];
let indexToBeSwapped;
for (let j = i + 1; j < unsorted.length; j++)
if (min > unsorted[j]) {
min = unsorted[j];
indexToBeSwapped = j;
}
if (indexToBeSwapped)
[unsorted[i], unsorted[indexToBeSwapped]] = [
unsorted[indexToBeSwapped],
unsorted[i],
];
// swap 최신 문법;;
}
return unsorted;
}
const result = solution([13, 5, 11, 7, 23, 15]);
console.log(result);
Reference
この問題について(ソートの選択), 我々は、より多くの情報をここで見つけました https://velog.io/@woobuntu/선택정렬テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol