常見排序演算法的實現(二)-shell排序

來源:互聯網
上載者:User

shell排序是對插入排序的一個改裝,它每次排序把序列的元素按照某個增量分成幾個子序列,對這幾個子序列進行插入排序,然後不斷的縮小增量擴大每個子序列的元素數量,直到增量為一的時候子序列就和原先的待排列序列一樣了,此時只需要做少量的比較和移動就可以完成對序列的排序了.

// shell排序
void ShellSort(int array[], int length)
{
    int temp;

    // 增量從數組長度的一半開始,每次減小一倍
    for (int increment = length / 2; increment > 0; increment /= 2)
        for (int i = increment; i < length; ++i)
        {
            temp = array[i];
            // 對一組增量為increment的元素進行插入排序
            for (int j = i; j >= increment; j -= increment)
            {
                // 把i之前大於array[i]的資料向後移動
                if (temp < array[j - increment])
                {
                    array[j] = array[j - increment];
                }
                else
                {
                    break;
                }
            }
            // 在合適位置安放當前元素
            array[j] = temp;
        }
}

動畫示範:

http://202.113.89.254/DataStructure/DS/web/flashhtml/shell.htm

相關文章

聯繫我們

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