标签:切割 函数 bsp bst color 字符 文字 dig class
求两个数的最大公因子(在algorithm头文件里):
int __gcd(int a,int b)
判断一个字符是否是英文字母或者数字:
bool isalnum(char c)
判断一个字符是否问英文字母:
bool isalpha(char c)
判断一个字符是否问数字:
bool isdigit(char c)
将字母转换为大写字母:
int toupper(int c)
将字母转换为小写字母:
int tolower(int c);
将字符串类型的以字符数组输出:
1 printf("%s",s.c_str());
字符串数组中查找某个字符串:
1 int s.find(string s)//找到返回位置,没有访问string::npos
将字符串切割:
string s.substr(int index, int len)//index位位置,len为切割长度
------------------------------------------------------------------
之后在更新
------------------------------------------------------------------
标签:切割 函数 bsp bst color 字符 文字 dig class
原文地址:http://www.cnblogs.com/xingkongyihao/p/7142479.html