摘要: 1.归并排序板子(包含求逆序对个数): #include<bits/stdc++.h> using namespace std; const int maxn=1e5+10; int a[maxn],tmp[maxn]; int ans=0; void merge_sort(int l,int r) 阅读全文
posted @ 2020-11-09 22:31 清风紫雪 阅读(256) 评论(0) 推荐(0) 编辑