摘要: ////////////////////////////////////// // // description: quick sort algorithm // created by : kangquan2008@scut // ////////////////////////////////////// #include<stdio.h> #include<stdlib.h> int partition(int data[],int low,int high) { int pivot_key = data[low]; while(low < high) { w 阅读全文