快速排序模板 2025-1-06 17:43 | 16 | 0 | 🎓 理工 题目 对 n 个元素的数组 a,进行从小到大排序 #include<bits/stdc++.h> using namespace std; const int N = 1E5 + 5; int a[N]; void quick_sort(int l, int r) { // 递归的终止情况 if (l >= r) return; …