常见头文件
#include 《cstdio>
#include 《cmath>
http://www.cplusplus.com/reference/cmath/
#include 《algorithm>
http://blog.csdn.net/wlchen123/article/details/8219131
常见的:max、min、sort 、swap、
#include 《iostream>
#include 《cstring>
http://www.cnblogs.com/xFreedom/archive/2011/05/16/2048037.html
C++里的 cstring对应C语言的string.h
string.h是C中处理字符串的函数的声明,string是C++中string类的头文件,尽管在C++中包含string.h是允许的,但C++标准建议用头文件cstring来替代string.h
里面常用:
strcmp(a,b)==0 比较字符串是否相同,相同返回值是0,a>b返回正数;a《b返回负数
memset(a,0,sizeof(a)); 把字符串清空(所有字符元素全变成\0)
strlen(a); 计算这个字符串的长度(到第一个\0为止)
strcpy
strcat:char * strncat ( char * destination, const char * source, size_t num );
Append characters from string
Appends the firstnumcharacters ofsourcetodestination, plus a terminating null-character.
If the length of the C string insourceis less thannum, only the content up to the terminating null-character is copied.
size()
length()
reverse()
substr() string substr (size_t pos = 0, size_t len = npos) const;
find() 若查找成功,返回按查找规则找到的第一个字符或子串的位置;若查找失败,返回npos,即-1(打印出来为4294967295)
#include 《map>
#include 《string>
C++中,string头文件基本上已经包含在iostream中了。
但是,平时使用的时候建议加上#include(尤其在以下情况下)
1、使用string类型
2、使用cin、cout语句来输入输出string类型变量(注意,同时还需要#include)
3、使用memset()、strlen()、strcpy()、strcat等函数时
函数原型char *strcpy(char *dest,const char *src)
#include 《stack>
#include 《cctype>
#include 《vector>
#include 《queue>
#include 《set>
#include 《utility>
#include 《cassert>
#include 《numeric>
#include 《sstream>
using namespace std;
#define Online_Judge
#define outstars cout << "***********************" << endl;
#define clr(a,b) memset(a,b,sizeof(a))
#define lson l , mid , rt << 1
#define rson mid + 1 , r , rt << 1 | 1
#define mk make_pair
const int MAXN = 1000 + 50;
const int MAXS = 10000 + 50;
const int sigma_size = 26;
const long long LLMAX = 0x7fffffffffffffffLL;
const long long LLMIN = 0x8000000000000000LL;
const int INF = 0x7fffffff;
const int IMIN = 0x80000000;
const int inf = 1 << 30;
#define eps 1e-10
const long long MOD = 1000000000 + 7;
const int mod = 10007;
typedef long long LL;
const double PI = acos(-1.0);
typedef double D;
typedef pair pii;
typedef vector vec;
typedef vector mat;
typedef vector vs;