Java學習筆記——排序演算法之希爾排序(Shell Sort)

來源:互聯網
上載者:User

標籤:插入排序   sort   基礎   blog   複雜   n+1   class   bsp   希爾排序   

 

落日樓頭,斷鴻聲裡,江南遊子。把吳鉤看了,欄杆拍遍,無人會,登臨意。

                                 ——水龍吟·登建康賞心亭

 

希爾演算法是希爾(D.L.Shell)於1959年提出的一種排序演算法。是第一個時間複雜度突破O(n2)的演算法之一。

其基礎是插入排序。

上代碼:

 1 public class ShellSort { 2  3     public static void shellSort(int[] arr){ 4          5         int increment = arr.length; 6         int temp;//牌 7         int i; 8         int j; 9         do {10             increment = increment/3 + 1;//增量11             for (i = increment; i < arr.length; i++) {12                 if (arr[i] < arr[i - increment]) {13                     temp = arr[i];14                     for (j = i - increment; j >= 0 && temp < arr[j]; j -= increment) {15                         arr[j] =arr[j]^arr[j + increment];16                         arr[j + increment] =arr[j]^arr[j + increment];17                         arr[j] =arr[j]^arr[j + increment];18                     }19                 }20             }21         } while (increment > 1);22     }23 }

增量選取△k = 2^(t-k+1)-1 (0≤k≤t≤?log2(n+1)?)

Java學習筆記——排序演算法之希爾排序(Shell Sort)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.