void bubbleSort(int a[], int n) { for(int i = 0; i < n - 1 ; ++i){ for(int j = 0 ; j < (n - i) - 1 ; ++j){ int temp; if(a[j] > a[j + 1]){ temp = a[j]; a[j] = a[j + 1]; a[j + 1] = temp; } } } for(int i = 0 ; i < n ; ++ i){ PRintf(“%d “,a[i]); } printf(“/n”); }
新闻热点
疑难解答