Collections.sort()中的mergeSort归并排序

Posted ZepheryWen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Collections.sort()中的mergeSort归并排序相关的知识,希望对你有一定的参考价值。

@SuppressWarnings({"unchecked", "rawtypes"})
    private static void mergeSort(Object[] src,
                                  Object[] dest,
                                  int low,
                                  int high,
                                  int off) {
        int length = high - low;

        // Insertion sort on smallest arrays
        if (length < INSERTIONSORT_THRESHOLD) {
            for (int i=low; i<high; i++)
                for (int j=i; j>low &&
                         ((Comparable) dest[j-1]).compareTo(dest[j])>0; j--)
                    swap(dest, j, j-1);
            return;
        }

        // Recursively sort halves of dest into src
        int destLow  = low;
        int destHigh = high;
        low  += off;
        high += off;
        int mid = (low + high) >>> 1;
        mergeSort(dest, src, low, mid, -off);
        mergeSort(dest, src, mid, high, -off);

        // If list is already sorted, just copy from src to dest.  This is an
        // optimization that results in faster sorts for nearly ordered lists.
        if (((Comparable)src[mid-1]).compareTo(src[mid]) <= 0) {
            System.arraycopy(src, low, dest, destLow, length);
            return;
        }

        // Merge sorted halves (now in src) into dest
        for(int i = destLow, p = low, q = mid; i < destHigh; i++) {
            if (q >= high || p < mid && ((Comparable)src[p]).compareTo(src[q])<=0)
                dest[i] = src[p++];
            else
                dest[i] = src[q++];
        }
    }

    /**
     * Swaps x[a] with x[b].
     */
    private static void swap(Object[] x, int a, int b) {
        Object t = x[a];
        x[a] = x[b];
        x[b] = t;
    }

 

以上是关于Collections.sort()中的mergeSort归并排序的主要内容,如果未能解决你的问题,请参考以下文章

java里的Collections类中的静态方法sort()是怎么用比较器比较两个对象?

Collections.sort() in JDK1.6

39-java中Arrays.sort 和 collections.sort()总结

使用 Collections.sort 时出错

当比较器返回0时,java 8中的Collections.sort不能用作java 6

13弹;集合中的工具类Collections和Arrays