摘要: 快速排序模板 #include<iostream> using namespace std; const int N=1e6+10; int n; int q[N]; void quick_sort(int q[],int le,int r)//传三个参数,一个是已知数组,一个数组左边的变量,一个标 阅读全文
posted @ 2022-03-21 20:55 wanzg 阅读(59) 评论(0) 推荐(0)