摘要:
1 #include <stdio.h> 2 3 void swap(int *a,int *b) 4 { 5 int t; 6 t=*a; *a=*b; *b=t; 7 } 8 9 void selection_sort(int s[],int n){10 int i,j;11 int min ;12 for(i=0;i<n;i++){13 min=i;14 for( j=i+1;j<n;j++){15 if(s[j]<s[min]) min=j;16 }17 swap(&s[i],&s[min]);18 }19 }20 21 void inse 阅读全文