最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Arrays.sort如何實現(xiàn)降序排序

 更新時間:2022年11月25日 17:10:33   作者:北冥SP  
這篇文章主要介紹了Arrays.sort如何實現(xiàn)降序排序問題,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教

Arrays.sort實現(xiàn)降序排序

在調(diào)用Arrays.sort()對數(shù)組進行排序時,默認(rèn)是升序排序的,如果想讓數(shù)組降序排序,有下面兩種方法:

1.Collections的reverseOrder

import java.util.*;
?
public class Main {
? ? public static void main(String[] args) {
// ? ? ? ?注意這里是Integer,不是int
? ? ? ? Integer[] arr={9,8,7,6,5,4,3,2,1};
? ? ? ? Arrays.sort(arr,Collections.reverseOrder());
? ? ? ? for(int i:arr){
? ? ? ? ? ? System.out.println(i);
? ? ? ? }
? ? }
}

2.利用Comparator接口復(fù)寫compare

import java.util.*;
?
public class Main {
? ? public static void main(String[] args) {
? ? ? ? Integer[] arr={9,8,7,6,5,4,3,2,1};
? ? ? ? Comparator cmp=new CMP();
? ? ? ? Arrays.sort(arr,cmp);
? ? ? ? for(int i:arr){
? ? ? ? ? ? System.out.println(i);
? ? ? ? }
? ? }
}
class CMP implements Comparator<Integer>{
? ? @Override //可以去掉。作用是檢查下面的方法名是不是父類中所有的
? ? public int compare(Integer a,Integer b){
// ? ? ? ?兩種都可以,升序排序的話反過來就行
// ? ? ? ?return a-b<0?1:-1;
? ? ? ? return b-a;
? ? }
}

注意:如果需要改變默認(rèn)的排列方式,不能使用基本類型(int,char等)定義變量,而應(yīng)該用對應(yīng)的類

Arrays.sort底層原理

概述

Collections.sort()方法底層調(diào)用的也是Arrays.sort()方法,下面我們通過測試用例debug,探究一下其源碼,首先說一下結(jié)果,使用到了插入排序,雙軸快排,歸并排序

雙軸快排(DualPivotQuicksort): 顧名思義有兩個軸元素pivot1,pivot2,且pivot ≤
pivot2,將序列分成三段:x < pivot1、pivot1 ≤ x ≤ pivot2、x >pivot2,然后分別對三段進行遞歸。這個算法通常會比傳統(tǒng)的快排效率更高,也因此被作為Arrays.java中給基本類型的數(shù)據(jù)排序的具體實現(xiàn)。

大致流程:

在這里插入圖片描述

快速排序部分展開


在這里插入圖片描述

在這里插入圖片描述

在這里插入圖片描述

案例

	public static void main(String[] args) {
        int[] nums = new int[]{6,5,4,3,2,1};
        List<Integer> list = Arrays.asList(6, 5, 4, 3, 2, 1);
        Arrays.sort(nums);
        Collections.sort(list);
        System.out.println(Arrays.toString(nums));
        System.out.println(list);

    }

運行結(jié)果

在這里插入圖片描述

1 進入Arrays.sort()方法

/**
     * Sorts the specified array into ascending numerical order.
     *
     * <p>Implementation note: The sorting algorithm is a Dual-Pivot Quicksort
     * by Vladimir Yaroslavskiy, Jon Bentley, and Joshua Bloch. This algorithm
     * offers O(n log(n)) performance on many data sets that cause other
     * quicksorts to degrade to quadratic performance, and is typically
     * faster than traditional (one-pivot) Quicksort implementations.
     *
     * @param a the array to be sorted
     */
    public static void sort(int[] a) {
        DualPivotQuicksort.sort(a, 0, a.length - 1, null, 0, 0);
    }

在這里插入圖片描述

方法上的注釋

在這里插入圖片描述

2 進入DualPivotQuicksort類內(nèi)部的靜態(tài)方法sort

方法上的注釋

在這里插入圖片描述

3 走sort的流程

在這里插入圖片描述


在這里插入圖片描述

1. 排序范圍小于286的數(shù)組使用快速排序

 	// Use Quicksort on small arrays
    if (right - left < QUICKSORT_THRESHOLD) {
            sort(a, left, right, true);
            return;
    }
    // Merge sort
    ......

2. 進入sort方法,判斷數(shù)組長度是否小于47,小于則直接采用插入排序,否則執(zhí)行3。

在這里插入圖片描述


在這里插入圖片描述

	 // Use insertion sort on tiny arrays
    if (length < INSERTION_SORT_THRESHOLD) {
	   // Insertion sort
	   ......
    }

3. 用公式length/8+length/64+1近似計算出數(shù)組長度的1/7。

// Inexpensive approximation of length / 7
int seventh = (length >> 3) + (length >> 6) + 1;

4. 取5個根據(jù)經(jīng)驗得出的等距點。

在這里插入圖片描述

		/*
         * Sort five evenly spaced elements around (and including) the
         * center element in the range. These elements will be used for
         * pivot selection as described below. The choice for spacing
         * these elements was empirically determined to work well on
         * a wide variety of inputs.
         */
        int e3 = (left + right) >>> 1; // The midpoint
        int e2 = e3 - seventh;
        int e1 = e2 - seventh;
        int e4 = e3 + seventh;
        int e5 = e4 + seventh;

5.將這5個元素進行插入排序

		// Sort these elements using insertion sort
        if (a[e2] < a[e1]) { long t = a[e2]; a[e2] = a[e1]; a[e1] = t; }

        if (a[e3] < a[e2]) { long t = a[e3]; a[e3] = a[e2]; a[e2] = t;
            if (t < a[e1]) { a[e2] = a[e1]; a[e1] = t; }
        }
        if (a[e4] < a[e3]) { long t = a[e4]; a[e4] = a[e3]; a[e3] = t;
            if (t < a[e2]) { a[e3] = a[e2]; a[e2] = t;
                if (t < a[e1]) { a[e2] = a[e1]; a[e1] = t; }
            }
        }
        if (a[e5] < a[e4]) { long t = a[e5]; a[e5] = a[e4]; a[e4] = t;
            if (t < a[e3]) { a[e4] = a[e3]; a[e3] = t;
                if (t < a[e2]) { a[e3] = a[e2]; a[e2] = t;
                    if (t < a[e1]) { a[e2] = a[e1]; a[e1] = t; }
                }
            }
        }

6. 選取a[e2],a[e4]分別作為pivot1,pivot2。由于步驟5進行了排序,所以必有pivot1 <=pivot2。定義兩個指針less和great,less從最左邊開始向右遍歷,一直找到第一個不小于pivot1的元素,great從右邊開始向左遍歷,一直找到第一個不大于pivot2的元素。

		 /*
         * Use the second and fourth of the five sorted elements as pivots.
         * These values are inexpensive approximations of the first and
         * second terciles of the array. Note that pivot1 <= pivot2.
         */
        int pivot1 = a[e2];
        int pivot2 = a[e4];
        /*
         * The first and the last elements to be sorted are moved to the
         * locations formerly occupied by the pivots. When partitioning
         * is complete, the pivots are swapped back into their final
         * positions, and excluded from subsequent sorting.
         */
        a[e2] = a[left];
        a[e4] = a[right];
        /*
         * Skip elements, which are less or greater than pivot values.
         */
        while (a[++less] < pivot1);
        while (a[--great] > pivot2);

7. 接著定義指針k從less-1開始向右遍歷至great,把小于pivot1的元素移動到less左邊,大于pivot2的元素移動到great右邊。這里要注意,我們已知great處的元素小于pivot2,但是它于pivot1的大小關(guān)系,還需要進行判斷,如果比pivot1還小,需要移動到到less左邊,否則只需要交換到k處。

			/*
             * Partitioning:
             *
             *   left part           center part                   right part
             * +--------------------------------------------------------------+
             * |  < pivot1  |  pivot1 <= && <= pivot2  |    ?    |  > pivot2  |
             * +--------------------------------------------------------------+
             *               ^                          ^       ^
             *               |                          |       |
             *              less                        k     great
             *
             * Invariants:
             *
             *              all in (left, less)   < pivot1
             *    pivot1 <= all in [less, k)     <= pivot2
             *              all in (great, right) > pivot2
             *
             * Pointer k is the first index of ?-part.
             */
            outer:
            for (int k = less - 1; ++k <= great; ) {
                short ak = a[k];
                if (ak < pivot1) { // Move a[k] to left part
                    a[k] = a[less];
                    /*
                     * Here and below we use "a[i] = b; i++;" instead
                     * of "a[i++] = b;" due to performance issue.
                     */
                    a[less] = ak;
                    ++less;
                } else if (ak > pivot2) { // Move a[k] to right part
                    while (a[great] > pivot2) {
                        if (great-- == k) {
                            break outer;
                        }
                    }
                    if (a[great] < pivot1) { // a[great] <= pivot2
                        a[k] = a[less];
                        a[less] = a[great];
                        ++less;
                    } else { // pivot1 <= a[great] <= pivot2
                        a[k] = a[great];
                    }
                    /*
                     * Here and below we use "a[i] = b; i--;" instead
                     * of "a[i--] = b;" due to performance issue.
                     */
                    a[great] = ak;
                    --great;
                }
            }

8. 將樞軸交換到它們的最終位置

	// Swap pivots into their final positions
    a[left]  = a[less  - 1]; a[less  - 1] = pivot1;
    a[right] = a[great + 1]; a[great + 1] = pivot2;

9. 遞歸排序左右部分,不包括已知的樞軸

		// Sort left and right parts recursively, excluding known pivots
        sort(a, left, less - 2, leftmost);
        sort(a, great + 2, right, false);

10. 對于中間的部分,如果大于4/7的數(shù)組長度,遞歸中間部分

			/*
             * If center part is too large (comprises > 4/7 of the array),
             * swap internal pivot values to ends.
             */
            if (less < e1 && e5 < great) {
                /*
                 * Skip elements, which are equal to pivot values.
                 */
                while (a[less] == pivot1) {
                    ++less;
                }

                while (a[great] == pivot2) {
                    --great;
                }

                /*
                 * Partitioning:
                 *
                 *   left part         center part                  right part
                 * +----------------------------------------------------------+
                 * | == pivot1 |  pivot1 < && < pivot2  |    ?    | == pivot2 |
                 * +----------------------------------------------------------+
                 *              ^                        ^       ^
                 *              |                        |       |
                 *             less                      k     great
                 *
                 * Invariants:
                 *
                 *              all in (*,  less) == pivot1
                 *     pivot1 < all in [less,  k)  < pivot2
                 *              all in (great, *) == pivot2
                 *
                 * Pointer k is the first index of ?-part.
                 */
                outer:
                for (int k = less - 1; ++k <= great; ) {
                    short ak = a[k];
                    if (ak == pivot1) { // Move a[k] to left part
                        a[k] = a[less];
                        a[less] = ak;
                        ++less;
                    } else if (ak == pivot2) { // Move a[k] to right part
                        while (a[great] == pivot2) {
                            if (great-- == k) {
                                break outer;
                            }
                        }
                        if (a[great] == pivot1) { // a[great] < pivot2
                            a[k] = a[less];
                            /*
                             * Even though a[great] equals to pivot1, the
                             * assignment a[less] = pivot1 may be incorrect,
                             * if a[great] and pivot1 are floating-point zeros
                             * of different signs. Therefore in float and
                             * double sorting methods we have to use more
                             * accurate assignment a[less] = a[great].
                             */
                            a[less] = pivot1;
                            ++less;
                        } else { // pivot1 < a[great] < pivot2
                            a[k] = a[great];
                        }
                        a[great] = ak;
                        --great;
                    }
                }
            }

            // Sort center part recursively
            sort(a, less, great, false);

4 小結(jié)

Arrays.sort對升序數(shù)組、降序數(shù)組和重復(fù)數(shù)組的排序效率有了很大的提升,這里面有幾個重大的優(yōu)化。

  • 對于小數(shù)組來說,插入排序效率更高,每次遞歸到小于47的大小時,用插入排序代替快排,明顯提升了性能。
  • 雙軸快排使用兩個pivot,每輪把數(shù)組分成3段,在沒有明顯增加比較次數(shù)的情況下巧妙地減少了遞歸次數(shù)。
  • pivot的選擇上增加了隨機性,卻沒有帶來隨機數(shù)的開銷。
  • 對重復(fù)數(shù)據(jù)進行了優(yōu)化處理,避免了不必要交換和遞歸。

總結(jié)

以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。

相關(guān)文章

  • Spring整合Mybatis的全過程

    Spring整合Mybatis的全過程

    這篇文章主要介紹了Spring整合Mybatis的全過程,包括spring配置文件書寫映射器接口的實例代碼,本文給大家介紹的非常詳細(xì),需要的朋友可以參考下
    2021-06-06
  • HttpClient的DnsResolver自定義DNS解析另一種選擇深入研究

    HttpClient的DnsResolver自定義DNS解析另一種選擇深入研究

    這篇文章主要為大家介紹了HttpClient的DnsResolver自定義DNS解析另一種選擇深入研究,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2023-10-10
  • JSONObject與JSONArray的使用

    JSONObject與JSONArray的使用

    這篇文章主要介紹了JSONObject與JSONArray的使用 的相關(guān)資料,需要的朋友可以參考下
    2016-06-06
  • JAVA 對象創(chuàng)建與對象克隆

    JAVA 對象創(chuàng)建與對象克隆

    這篇文章主要介紹了JAVA 對象創(chuàng)建與對象克隆,new 創(chuàng)建、反射、克隆、反序列化,克隆它分為深拷貝和淺拷貝,通過調(diào)用對象的 clone方法,進行對象的克隆,下面來看看文章的詳細(xì)內(nèi)容吧
    2022-02-02
  • java數(shù)組排序示例(冒泡排序、快速排序、希爾排序、選擇排序)

    java數(shù)組排序示例(冒泡排序、快速排序、希爾排序、選擇排序)

    java中在運用數(shù)組進行排序功能時,一般有四種方法:快速排序法、冒泡法、選擇排序法、插入排序法(希爾排序(Shell Sort)是插入排序的一種),下面是一些示例,需要的朋友可以參考下
    2014-03-03
  • Java方法的可變參數(shù)類型實例分析

    Java方法的可變參數(shù)類型實例分析

    這篇文章主要介紹了Java方法的可變參數(shù)類型,通過實例對Java中的可變參數(shù)類型進行了較為深入的分析,需要的朋友可以參考下
    2014-09-09
  • SpringBoot訪問web中的靜態(tài)資源的方式小結(jié)

    SpringBoot訪問web中的靜態(tài)資源的方式小結(jié)

    這篇文章主要介紹了SpringBoot訪問web中的靜態(tài)資源的方式,本文給大家介紹了兩種方式,通過代碼示例和圖文講解的非常詳細(xì),具有一定的參考價值,需要的朋友可以參考下
    2024-10-10
  • 基于Luhn算法的銀行卡校驗規(guī)則

    基于Luhn算法的銀行卡校驗規(guī)則

    這篇文章主要為大家介紹了基于Luhn算法的銀行卡校驗規(guī)則,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2022-05-05
  • java傳入時間戳返回LocalDateTime的實現(xiàn)方法

    java傳入時間戳返回LocalDateTime的實現(xiàn)方法

    這篇文章主要介紹了java傳入時間戳返回LocalDateTime的實現(xiàn)方法,在Java中將時間戳轉(zhuǎn)換為LocalDateTime時需要注意時區(qū)問題,因為LocalDateTime不包含時區(qū)信息,文中通過代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2024-11-11
  • MyBatis寫入Json字段以及Json字段轉(zhuǎn)對象示例詳解

    MyBatis寫入Json字段以及Json字段轉(zhuǎn)對象示例詳解

    這篇文章主要給大家介紹了關(guān)于MyBatis寫入Json字段以及Json字段轉(zhuǎn)對象的相關(guān)資料,文中通過實例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2023-07-07

最新評論

蓝田县| 江门市| 宝山区| 嘉禾县| 九江市| 洱源县| 弥渡县| 永顺县| 墨竹工卡县| 盖州市| 库伦旗| 尉犁县| 易门县| 驻马店市| 来凤县| 宜都市| 江山市| 西城区| 六枝特区| 郯城县| 仁布县| 延津县| 基隆市| 宣汉县| 博爱县| 珠海市| 徐闻县| 哈尔滨市| 外汇| 合肥市| 衡阳县| 泗洪县| 锦屏县| 霍山县| 永新县| 双城市| 黄梅县| 项城市| 霍城县| 万宁市| 肃南|