冒泡排序法 void BubbleSort(int a[], int n) { int i = 0; int j = 0; int tmp = 0; for (i = 0; i < n – 1; i++) … Continue reading 冒泡排序法