冒泡排序
//#include <stdio.h>
//
//int main(int argc, const char * argv[]) {
// int a[]={1,3,8,2,45,12};
// int count=0;
// for(int i=0;i<6;i++){
// for(int j=0;j<6-i-1;j++){
// int temp;
// if(a[j]>a[j+1]){
// temp=a[j];
// a[j]=a[j+1];
// a[j+1]=temp;
// }
//
// count++;
// for (int i=0; i<6; i++) {
// printf("%d\t",a[i]);
// }
// printf("\n");
// }
// for (int i=0; i<6; i++) {
// printf("%d\t",a[i]);
// }
// printf("%d",count);
// printf("\n");
// }
//
// return 0;
|
|