日期: 2025 年 1 月 6 日

1 篇文章

快速排序模板
题目 对 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; …