ACM竞赛C++常用头文件

#include //数据输入输出流
#include //字符串操作函数
#include //C的输入输出
#include //定义杂项函数及内存分配函数
#include //C中的数学函数
#include //c++中的string类 他不能用strcpy等c函数去操作
#include //STL vetor容器
#include //STL list
#include // STL map
#include // STL queue
#include //sTL stack
#include //bitset可按位定义串
//比如:bitset <1000> all;定义一个1000位的串
#include //STL各种算法 比如 swap sort merge max min 比较
#include //常用数字操作 一般和algorithm搭配使用
#include //STL定义运算函数(代替运算符)
#include//参数化输入/输出
#include//定义各种数据类型最值常量
#include//基于数组的输入/输出
#include//文件输入/输出

你可能感兴趣的:(初涉ACM)