SOURCE

// 冒泡排序
const array = [2, 5, 3, 2, 6, 10, 7, 5, 8]

function bubbleSort(arr) {
    if (arr.length < 2) {
        return
    }
    for (let i = 0; i < arr.length - 1; i++) { // 完成排序需要几个完成的冒泡
        for (let j = 0; j < arr.length - 1 - i; j++) { // 每完成一个完整的冒泡排多少次
            if (arr[j] > arr[j + 1]) {
                [arr[j], arr[j + 1]] = [arr[j + 1], arr[j]]
            }
        }
    }
}

bubbleSort(array)
console.log(array)
console 命令行工具 X clear

                    
>
console