泡の位置合わせ
3893 ワード
function solution(unsorted) {
for (let i = 0; i < unsorted.length - 1; i++) {
for (let j = 0; j < unsorted.length - i - 1; j++)
if (unsorted[j] > unsorted[j + 1])
[unsorted[j], unsorted[j + 1]] = [unsorted[j + 1], unsorted[j]];
}
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