快排算法

快排算法 #include<iostream> #include<vector> #include<stdlib.h> using namespace std; int partition(vector<int> &vec,int low,int high){ int temp = vec[low]; while(low<high){ while(low<high
相關文章
相關標籤/搜索