选择排序 – 算法
1. 将要排序的对象分作2部份,一个是已排序的,一个是未排序的
2. 从后端未排序部份选择一个最小值,并放入前端已排序部份的最后一个
e.g:
排序前:70 80 31 37 10 1 48 60 33 80
[1] 80 31 37 10 7048 60 33 80 选出最小值1
[1 10] 31 37 80 7048 60 33 80 选出最小值10
[1 10 31] 37 80 7048 60 33 80 选出最小值31
[1 10 31 33] 80 7048 60 37 80 ......
[1 10 31 33 37] 7048 60 80 80 ......
[1 10 31 33 37 48]70 60 80 80 ......
[1 10 31 33 37 4860] 70 80 80 ......
[1 10 31 33 37 4860 70] 80 80 ......
[1 10 31 33 37 4860 70 80] 80 ......
#define SWAPER(X,Y){int t;t=X;X=Y;Y=t;} 选择排序 – 程序片段: int SelectionSort(int a[],int lens) { int i,j,k; for(i=0;i<lens;i++) { int minIndex = i; for(j=i+1;j<lens;j++) { if(a[minIndex]>a[j]) { minIndex=j; } } if(i!=minIndex) SWAPER(a[i],a[minIndex]); } return 0; } int SelectionSort2(int a[],int lens) { int i,j,k; for(i=0;i<lens;i++) { for(j=i+1;j<lens;j++) { if(a[i]<a[j]) { SWAPER(a[i],a[j]); } } } return 0; }
[1] 算法之路 - 选择排序,布布扣,bubuko.com
原文地址:http://blog.csdn.net/vivitue/article/details/38715789