912. 排序数组

1 void quickSort(int *nums, int n, int i, int j) { 2 int base, tmp, this_begin, this_end; 3 if (i<0 || j >= n) 4 return; 5 if (i >= j) 6 return ; 7 th
posted @ 2020-09-25 14:20  yushimeng  阅读(137)  评论(0编辑  收藏  举报