zoukankan      html  css  js  c++  java
  • C++关于包含所有头文件的表示

    #include<bits/stdc++.h>包含了目前c++所包含的所有头文件

    对比:

    #include <iostream>
    
    #include <cstdio>
    
    #include <fstream>
    
    #include <algorithm>
    
    #include <cmath>
    
    #include <deque>
    
    #include <vector>
    
    #include <queue>
    
    #include <string>
    
    #include <cstring>
    
    #include <map>
    
    #include <stack>
    
    #include <set> using namespace std;
    
    int main(){
    
    
    
    return 0;
    
    }
    

    可以直接转化为:

    #include<bits/stdc++.h>
    
    using namespace std;
    
    int main()
    
    
    
    return 0;
    
    }
  • 相关阅读:
    case when if
    存储过程 、函数和事务
    poj 2263
    hdu -1874
    poj 2472
    2544 hdu
    模板floyed
    模板Dijkstra
    hdu 2066
    hdu 2544
  • 原文地址:https://www.cnblogs.com/douqi/p/13831932.html
Copyright © 2011-2022 走看看