摘要: #include<stdio.h>void QuickSort(int* a,int low,int high);int FindPos(int* a,int low,int high);int main(){ int a[6]={2,1,0,5,4,3}; int i; QuickSort(a,0 阅读全文
posted @ 2016-07-24 21:59 wowowo1 阅读(120) 评论(0) 推荐(0) 编辑