摘要: #include#define LEN 8int a[LEN] = { 5, 2, 4, 7, 1, 3, 2, 6 };int Partition(int a[],int p,int r);void Swap(int *a,int *b);void QuickSort(in... 阅读全文
posted @ 2014-03-17 09:28 Murderer 阅读(285) 评论(0) 推荐(0) 编辑