C++ 快速排序

交換的過程如下圖所示 、 #include<iostream> #include<algorithm> #define N 100010 using namespace std; void swap(int &a, int &b) { int temp = a; a = b; b = temp; } void quicksort(int a[], int s, int e) { //
相關文章
相關標籤/搜索