C/C++头文件汇总 1. 万能头文件 #include<bits/stdc++.h> 2. C++头文件汇总 C 头文件 #include <assert.h> //设定插入点 #include <ctype.h> //字符处理 #include <errno.h> //定义错误码 #include <float.h> //浮点数处理 2020-01-31 C/C++ C/C++ ACM
STL标准模板库 vector, 变长数组,倍增的思想 size() 返回元素个数 empty() 返回是否为空 clear() 清空 front()/back() push_back()/pop_back() begin()/end() [] 支持比较运算,按字典序 pair<int, int> 2020-01-31 ACM C/C++ ACM
C/C++输入输出加速 ios::sync_with_stdio(false); cin.tie(NULL); const int maxn = 110; const int INF = 0x3f3f3f3f; 1. 快读 inline int read(){ int re=0,k=1; char ch=getchar(); while 2020-01-30 ACM C/C++ ACM