C# 插入排序

來源:互聯網
上載者:User
C# ,插入排序

using System;  using System.Collections.Generic;  using System.Linq;  using System.Text;  namespace Sort  {      class InsertSorter      {          public static int[] Sort(int[] a)          {              InsertSort(a);              return a;          }          private static void InsertSort(int[] myArray)          {             int i, j,temp;            for (i = 1; i < myArray.Length; i++)              {                  temp = myArray[i];//儲存當前資料,當前資料即待插入的資料                          //將數組標號i及i之前的元素,排成遞增序列                  for (j = i - 1; j >= 0 && myArray[j] >temp; j--)                  {                      myArray[j + 1] = myArray[j];                                 }                  myArray[j + 1] = temp;              }       }        }  }

例一:

關鍵字序列T=(13,6,3,31,9,27,5,11) 請寫出直接插入排序的中間過程式列。

【13】, 6, 3, 31, 9, 27, 5, 11

【6, 13】, 3, 31, 9, 27, 5, 11

【3, 6, 13】, 31, 9, 27, 5, 11

【3, 6, 13,31】, 9, 27, 5, 11

【3, 6, 9, 13,31】, 27, 5, 11

【3, 6, 9, 13,27, 31】, 5, 11

【3, 5, 6, 9, 13,27, 31】, 11

【3, 5, 6, 9, 11,13,27, 31】

小註:每次小迴圈只排列數組0到i這些元素的順序(與冒泡類似)

例二:

例三:


在最壞情況下,數組完全逆序,插入第2個元素時要考察前1個元素,插入第3個元素時,要考慮前2個元素,……,插入第N個元素,要考慮前 N - 1 個元素。因此,最壞情況下的比較次數是 1 + 2 + 3 + ... + (N - 1),等差數列求和,結果為 N^2 / 2,所以最壞情況下的複雜度為 O(N^2)。

最好情況下,數組已經是有序的,每插入一個元素,只需要考查前一個元素,因此最好情況下,插入排序的時間複雜度為O(N)。

插入排序的空間複雜度是O(1),因為在插入排序的時候,只需要使用一個額外的空間,來儲存這個“拿出來”的元素,所以插入排序只需要額外的一個空間來做排序。

空間複雜度(Space Complexity)是對一個演算法在運行過程中臨時佔用儲存空間大小的量度。

由於是數組內部自己排序,把後面的部分按前後順序一點點的比較、移動,可以保持相對順序不變,所以插入排序是穩定的排序演算法。

以上就是C# 插入排序的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.