摘要:
1 #include <iostream> 2 #include<cstring> 3 using namespace std; 4 int a[100010],n; 5 int t[100010]; 6 void msort(int l,int r) { 7 if(l>=r) return;//序 阅读全文
摘要:
P1177 【模板】快速排序 快速排序模板 //P1177 【模板】快速排序 #include <bits/stdc++.h> using namespace std; int n,a[100010],t[100010]; void print(){ for(int i=1;i<=n;i++){ c 阅读全文