常用头文件
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <cmath>
#include <vector>
#include <queue>
#include <unordered_map>
#include <ctime>
using namespace std;
int main()
{
clock_t T = clock();
cout << "time: " << T / 1000.0;
return 0;
}
// 万能头
#include <bits/stdc++.h>
一些介绍
//解决爆栈,手动加栈,必须放在头文件之前
#pragma comment(linker,"/STACK:1024000000,1024000000")
//STL专用,使用了哪种数据结构,就要用到哪种头文件
#include <map> //C++
#include <vector> //C++
#include <set> //C++
//C++必备头文件,cin、cout及其相关函数在这里
#include <iostream> //C++
//strlen()、strcat()等字符串操作函数在这里
#include <cstring> //C++
//scanf()、printf()以及和它们长得像的函数在这里
#include <cstdio> //C++
#include <stdlib.h>//定义杂项函数及内存分配函数
//sort()在这里
#include <algorithm>> //C++
//log()、sin()、pow()等数学运算的函数在这里
#include <cmath>> //C++
isotream错了
已修改 thank you
好