摘要: void Bubble_sort(int *a, int n) { for (int i = 0; i < n - 1; i++) { for (int j = 0; j < n - 1; j++) { if (a[j] > a[j + 1]) { int tmp = a[j]; a[j] = a[ 阅读全文
posted @ 2021-02-16 19:05 扎坦诺斯 阅读(234) 评论(0) 推荐(0)