void QuickSort::QuickSort_Sort(int low,int high){ int Pivot_Key=Int_Vector[low],i=low,j=high; while(i<j) { while(i<j&&Int_Vector[j]>=Pivot_Key) { j--; } if(i<j) { Swap_Value(I...
posted on 2009-09-19 05:39  AlexusLi  阅读(957)  评论(0编辑  收藏  举报