C# 資料結構與演算法系列(六) 排序之直接插入排序法

來源:互聯網
上載者:User
直接插入排序的基本思路是:順序地將待排序的記錄按其關鍵碼的大小插入到已排序的記錄子序列的適當位置。設待排序的順序表List中有n個記錄,初始時子序列中只有一個記錄List[0],第一次排序時,把List[1]與List[0]比較大小,若List[0]<=List[1],說明不需要排序,否則把位置改變過來,第二次排序的時候,List[2]與List[1]比較大小,如果List[2]比List[1]小,再和List[0]比,然後插入到合適的位置。
演算法如下:
首先定認一個需要排序的數組:
int[] array = new int[6] { 2, 1, 4, 3, 6, 5 };
下面就是排序的代碼:
一、DESC方法 static void descInsertSort(int[] array)
        {
            for (int i = 1; i < array.Length; i++)
            {
                if (array[i] > array[i - 1])
                {
                    int tmp = array[i]; 
                    int j = 0;
                    for (j = i - 1; j >= 0 && tmp >array[j]; --j)
                    {
                        array[j + 1] = array[j];
                    }
                    array[j + 1] = tmp;
                }
            }
        }

二:ASC方法        static void ascInsertSort(int[] array)
        {
            for (int i = 1; i < array.Length; i++)
            {
                if (array[i] < array[i - 1])
                {
                    int tmp = array[i];
                    int j = 0;
                    for (j = i - 1; j >= 0 && tmp < array[j]; --j) 
                    {
                        array[j + 1] = array[j];
                    }
                    array[j + 1] = tmp;
                }
            }
        }

下面是測試的代碼:        static void Main(string[] args)
        {
            try
            {
                int[] array = new int[6] { 2, 1, 4, 3, 6, 5 };
                Console.WriteLine("----DESC----");
                descInsertSort(array);
                for (int i = 0; i < array.Length; i++)
                {
                    Console.WriteLine(array[i]);
                }
                Console.WriteLine("----ASC----");
                ascInsertSort(array);
                for (int i = 0; i < array.Length; i++)
                {
                    Console.WriteLine(array[i]);
                }
                Console.ReadLine();
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
                Console.ReadLine();
            }            
        }

結果如

相關文章

聯繫我們

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