摘要:
public void BubbleSort(int[] R) { int i,j,temp; //交换标志 bool exchange; //最多做R.Length-1趟排序 for(i=0; i=i; j--) { //交换条件 if(R[j+1]<R[j]) { temp=R[j+1]; R[j+1]=R[j]; ... 阅读全文
posted @ 2006-10-19 15:43
赵晓雷
阅读(426)
评论(2)
推荐(0)

浙公网安备 33010602011771号