摘要:
1.冒泡排序(Bubble sort)基本的View Code 1 void BubbleSort(int A[],int n)2 {3 int i,j;4 for(i=1;i<n;i++) //最多做n-1趟排序5 for(j=n-1;j>=i;j--) //从后往前冒泡,最"轻"的冒泡到最前面 6 if(A[j]<A[j-1])7 swap(A[j],A[j-1]);8 }改进的View Code 1 void BubbleSort_O(int A[],int n) 2 { 3 int i,j; 4 for(i=1;i<n;i++){ //最多做 阅读全文