iOS演算法(二)之選擇排序

來源:互聯網
上載者:User

標籤:

每一趟從待排序的資料元素中選出最小(或最大)的一個元素,順序放在已排好序的數列的最後,直到全部待排序的資料元素排完。 選擇排序是不穩定的排序方法。

 

一. 演算法描述

 

   選擇排序:比如在一個長度為N的無序數組中,在第一趟遍曆N個資料,找出其中最小的數值與第一個元素交換,第二趟遍曆剩下的N-1個資料,找出其中最小的數值與第二個元素交換......第N-1趟遍曆剩下的2個資料,找出其中最小的數值與第N-1個元素交換,至此選擇排序完成。

以下面5個無序的資料為例:

56 12 80 91 20(文中僅細化了第一趟的選擇過程)

第1趟:12 56 80 91 20

第2趟:12 20 80 91 56

第3趟:12 20 56 91 80

第4趟:12 20 56 80 91

???代碼實現:

 

#import <Foundation/Foundation.h>

int main(int argc, const char * argv[])

{

    int array[] = {12,2, 6, 9, 8, 5, 7, 1, 4};

    //為了增加可移植性(採取sizeof())計算數組元素個數count

    int count = sizeof(array) /sizeof(array[0]);

    //

    for (int i = 0; i < count - 1; i++) {   //比較的趟數

        int minIndex = i;//尋找最小值

        for (int j = minIndex +1; j < count; j++ ) {

            if (array[minIndex] > array[j]) {

                minIndex = j;

            }

        }

        //如果沒有比較到最後還剩餘一個數,那麼就執行下面的操作

        if (minIndex != i) {

            //交換資料

            int temp = 0;

            temp = array[i];

            array[i] = array[minIndex];

            array[minIndex] = temp;

        }

    }

    for (int i = 0; i < count; i++) {

        printf("[%2d]: %d\n", i, array[i]);

    }

    return 0;

}

 

iOS演算法(二)之選擇排序

聯繫我們

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