摘要: package sort; public class QuickSort { static void qsort(int []a,int low,int high){ int pivot; while(low>1; /*前中后三点三数取中,让a[low]为中间值*/ if(a[low]>a[high]) ... 阅读全文
posted @ 2019-03-02 21:40 codelzc 阅读(224) 评论(0) 推荐(0)
摘要: 非递归版 待完善中... 阅读全文
posted @ 2019-03-02 21:07 codelzc 阅读(199) 评论(0) 推荐(0)