八種排序方法(四)——快速排序

編譯器:Xcode 編程語言:C++ios 源程序:web #include <iostream> using namespace std; int findPos(int a[],int low,int high) { //將小於t的元素趕到t的左邊,大於t的元素趕到t的右邊 int t=a[low]; while(low<high) { whi
相關文章
相關標籤/搜索