摘要: 归并排序模板 code: #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> using namespace std; const int N = 1e5 + 10; typedef long long 阅读全文
posted @ 2021-04-03 19:19 how_you_make_me_feel 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 快排模板 code: //快排模板 #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> ​ using namespace std; typedef long long LL; const int N = 阅读全文
posted @ 2021-04-03 17:04 how_you_make_me_feel 阅读(438) 评论(0) 推荐(0) 编辑