摘要: 开放寻址法 #include <iostream> #include <cstring> #include <cstdio> using namespace std; const int N = 200010,null = 0x3f3f3f3f; int h[N]; int find(int x) 阅读全文
posted @ 2021-07-13 21:53 别问了我什么都不会 阅读(55) 评论(0) 推荐(0)
摘要: AcWing 785. 快速排序 #include <iostream> #include <cstdio> using namespace std; const int N = 100010; int a[N]; void quick_sort(int a[],int l,int r) { if( 阅读全文
posted @ 2021-07-13 02:07 别问了我什么都不会 阅读(60) 评论(0) 推荐(0)