摘要: #include <iostream> using namespace std; const int N = 10010; int n, q[N], tmp[N]; void merge_sort(int q[], int l, int r) { if(l >= r) return ; int mi 阅读全文
posted @ 2020-07-13 14:39 Captand 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 using namespace std; 3 const int N = 10010; 4 int n, q[N]; 5 void quick_sort(int q[], int l, int r) { 6 if(l >= r) return ; 7 阅读全文
posted @ 2020-07-11 21:11 Captand 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 这是第一个内容 阅读全文
posted @ 2020-07-10 23:25 Captand 阅读(184) 评论(0) 推荐(0) 编辑