蓝桥杯比赛时头文件必备模板
时间: 2023-09-25 15:12:48 浏览: 197
自己写的的蓝桥杯单片机代码模板,不是最好的,而是我高度针对比赛过程写的模板.zip
以下是一些常用的头文件模板:
1. iostream头文件
#include <iostream>
using namespace std;
2. string头文件
#include <string>
using namespace std;
3. vector头文件
#include <vector>
using namespace std;
4. algorithm头文件
#include <algorithm>
using namespace std;
5. queue头文件
#include <queue>
using namespace std;
6. stack头文件
#include <stack>
using namespace std;
7. map头文件
#include <map>
using namespace std;
8. set头文件
#include <set>
using namespace std;
9. list头文件
#include <list>
using namespace std;
10. cstdio头文件
#include <cstdio>
11. cmath头文件
#include <cmath>
12. cstring头文件
#include <cstring>
13. cctype头文件
#include <cctype>
14. cstdlib头文件
#include <cstdlib>
15.ctime头文件
#include <ctime>
阅读全文