摘要: ```c /* quicksort.c Author: Zoro Date: 2019/11/8 function: 快速排序 QuickSort pivot partition */ #include void quickSort(int arr[], int L, int R) { int i = L; int j = R; int pivot = arr[(L + R) / 2]; whil 阅读全文
posted @ 2019-11-08 14:58 电院院长 阅读(188) 评论(0) 推荐(0) 编辑