摘要: void selectsort(int *a,int len) { int i,j; int temp; for(i=0;i<len-1;i++) { for(j=i+1;j<len;j++) { if(a[i]>a[j]) { temp=a[i]; a[i]=a[j]; a[j]=temp; } 阅读全文
posted @ 2019-03-11 21:33 一人之下冯宝宝 阅读(150) 评论(0) 推荐(0) 编辑