排序演算法之選擇排序

來源:互聯網
上載者:User

標籤:style   blog   color   資料   io   for   

一. 演算法描述

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

 

二. 演算法分析

平均時間複雜度:O(n2)

空間複雜度:O(1)  (用於交換和記錄索引)

穩定性:不穩定 (比如序列【5, 5, 3】第一趟就將第一個[5]與[3]交換,導致第一個5挪動到第二個5後面)

三. 演算法實現
 1 #include<stdio.h> 2 int main() 3 { 4     int array[] = {3, 1, 5, 2, 6 ,4}; 5     int count = sizeof(array) / sizeof(array[0]); 6     for (int i = 0; i < count - 1; i++) { 7         int minIndex = i; 8         for (int j = minIndex + 1; j < count; j++) { 9             if (array[minIndex] > array[j]) {10                 minIndex = j;11             }12         }13         if (minIndex != i) {14             int temp = 0;15             temp = array[minIndex];16             array[minIndex] = array[i];17             array[i] = temp;18         }19     }20     for (int i = 0; i < count; i++) {21         printf("%d\n", array[i]);22     }23     return 0;24 }

聯繫我們

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