摘要: 快速排序: void quicksort(int l, int r){ if (l >= r) return ; int x = a[l + r >> 1], i = l - 1, j = r + 1; while (i < j) { while (a[++ i] < x); while (a[-- 阅读全文
posted @ 2021-04-11 13:52 荣荣荣荣荣荣 阅读(185) 评论(0) 推荐(0)