...
冒泡法排序:升序int a[5]={8,12,6,3,9};int i,j,t;for(i=0;i<4;i++) for(j=0;j<5-i;j++) if(a[j]>a[j+1]) {t=a[j];a[j]=a[j+1];a[j+1]=t;}
你确定冒泡排序没有变本?