• C++/C 常用头文件


    C++;

    #include <iostream>    // 输入输出

    #include <bits/stdc++.h>   // 万能头文件

    #include <algorithm>    //STL通用算法

    #include <bitset>     //STL位集容器
    #include <cmath>
    #include <list>      //STL线性列表容器
    #include <map>       //STL 映射容器
    #include <queue>      //STL队列容器
    #include <set>       //STL 集合容器
    #include <stack>      //STL堆栈容器    
    #include <string>     //字符串类
    #include <vector>     //STL动态数组容器

    C:

    #include <ctype.h>     //字符处理
    #include <float.h>     //浮点数处理
    #include<iostream.h>   //数据流输入/输出
    #include <math.h>     //定义数学函数
    #include <stdio.h>    //定义输入/输出函数
    #include <string.h>    //字符串处理
    #i 

  • 相关阅读:
    hdu 1106 排序(排序)
    hdu 1040 As Easy As A+B(排序)
    hdu 1029 Ignatius and the Princess IV(排序)
    mysql-9索引
    mysql-8 alter命令
    mysql-7事务管理
    mysql-6正则表达式
    http协议
    9-2交互体验
    9-2专项测试下午
  • 原文地址:https://www.cnblogs.com/Lamboofhome/p/16688122.html
Copyright © 2020-2023  润新知