归并排序

要点:https://zhuanlan.zhihu.com/p/36075856
主要思想:
归并排序的主要思想是分治法。主要过程是:
将n个元素从中间切开,分成两部分。(左边可能比右边多1个数)
将步骤1分成的两部分,再分别进行递归分解。直到所有部分的元素个数都为1。
从最底层开始逐步合并两个排好序的数列。

package DataStructure;

import java.util.Arrays;

public class MergeSort {
    public static void main(String[] args) {
        int[] arr = {55, 48, 6, 24, 88, 1230, 558};
        int[] temp = new int[arr.length];
        sort(arr, 0, arr.length - 1, temp);
        System.out.println(Arrays.toString(arr));
    }

    public static void sort(int[] arr, int left, int last, int[] temp) {
        if (left < last) {
            int mid = (last + left) / 2;
            sort(arr, left, mid, temp); // 向左递归分割
            sort(arr, mid + 1, last, temp); // 向右递归分割
            merge(arr, left, mid, last, temp); // 合并两个有序序列
        }
    }

    /**
     *
     * @param arr 原始数组
     * @param left 起始索引
     * @param mid 中间索引
     * @param last 末尾索引
     */
    public static void merge(int[] arr, int left, int mid, int last, int[] temp) {
        int l = left; // 第一个有序序列的起始索引
        int right = mid + 1; // 第二个有序序列的起始索引
        int t = 0; // 临时数组的起始索引
        
        // 将两个有序序列从最小位开始比较,依次放入临时数组中。
        while (l <= mid && right <= last) {
            if (arr[l] <= arr[right]) {
                temp[t++] = arr[l++];
            }else {
                temp[t++] = arr[right++];
            }
        }
        // 若第一个序列有剩余,则依次取出放入临时数组
        while (l <= mid) {
            temp[t++] = arr[l++];
        }
        // 若第二个序列有剩余,则依次取出放入临时数组
        while (right <= last) {
            temp[t++] = arr[right++];
        }
        // 将临时数组中所有数组放入原始数组相应位置。
        for (int i = 0; i < t; i++) {
            arr[left + i] = temp[i];
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值