- 博客(1)
- 收藏
- 关注
原创 Data Structures-1 bubble_sort中的change作用举例
#include void bubble_sort(int a[],int n) { int i,j,temp; int change; for(i=n-1,change=1;i>=1&&change;i--)//正向或逆向冒泡皆可,内层循环不变 { change=0; for(j=0;j<i;j++) if(a[j]>a[j+1]){temp=a[j];a[j]=a[j
2016-03-10 10:36:21 498
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人