冒泡排序

int arr[5]={12,6,1,40,9};

for(int i=0;i<4;i++){

for(int j=0;j<4-i;j++){

int temp;

 

if(arr[j]>arr[j+1]){

temp=arr[j];

 

arr[j]=arr[j+1];

 

arr[j+1]=temp;

}

}

}

 

for(int k=0;k<5;k++){

printf("%d\n",arr[k]);

}

posted @ 2016-03-05 21:39  清浅晨曦  阅读(82)  评论(0编辑  收藏  举报