排序算法---快速排序c++實現

#include<iostream> using namespace std; void quicksort(int *list, int s, int t) { if(s < t) { int i = s, j = t; int pivot = list[i]; //樞軸元素 while(i < j) { //從右左掃描 while(i < j && list[j
相關文章
相關標籤/搜索