# 归并排序

火狐浏览器的sort方法使用的就是归并排序

# 归并排序的思路

  • 分:把数组劈成两半,再递归的对子数组进行“分”操作,直到分成一个个单独的数。

  • 合:把两个数合并为有序数组,再对有序数组进行合并,直到全部子数组合并为一个完整数组。

# 合并两个有序数组

  • 新建一个空数组res,用于存放最终排序后的数组。

  • 比较两个有序数组的头部,较小者出队并推入res中。

  • 如果两个数组还有值,就重复第二步。

# JS实现

Array.prototype.mergeSort = function () {
    const rec = (arr) => {
        if (arr.length <= 1) { return arr }
        const mid = Math.floor(arr.length / 2);
        const left = arr.slice(0, mid);
        const right = arr.slice(mid, arr.length);
        const orderLeft = rec(left);
        const orderRight = rec(right);
        const res = [];
        while (orderLeft.length || orderRight.length) {
            if (orderLeft.length && orderRight.length) {
                res.push(orderLeft[0] < orderRight[0] ? orderLeft.shift() : orderRight.shift())
            } else if (orderLeft.length) {
                res.push(orderLeft.shift())
            } else if (orderRight.length) {
                res.push(orderRight.shift())
            }
        }
        return res;
    };
    const res = rec(this);
    res.forEach((n, i) => this[i] = n)
}
const arr = [5, 4, 3, 2, 1];
arr.mergeSort()
console.log(arr)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

# 归并排序的时间复杂度

  • 分的时间复杂度是 O(logN).

  • 合的时间复杂度是 O(n).

  • 时间复杂度:O(n * logN).