摘要: 快速排序(交换范式) // 一趟快排就是找到第一个元素的位置使得左边比它小右边比它大 int _quicksort(int *a, int low, int high) { int mid_value = a[low]; while(low < high) { while(low < high && 阅读全文
posted @ 2020-03-31 23:42 xytpai 阅读(173) 评论(0) 推荐(0) 编辑