摘要: /* 参数: a:数组首地址 left:需要排序的数组的开始位置 right:需要排序的数组的结束位置 */ void qSort(int *a,int left,int right){ //快速排序 if (left>=right) { return; }else{ int value=a[lef 阅读全文
posted @ 2018-03-28 11:58 杨悦·· 阅读(242) 评论(0) 推荐(0) 编辑