快速排序视频教程
#include <bits/stdc++.h>
using namespace std;
void quck_sort(int a[],int l, int r){
if(l>=r) return ;
2020-05-07