2019年3月1日

leetcode 字符串类型题

摘要: 1,Vaild Palindrome 1 bool isPalindrome(string& s) { 2 transform(s.begin(), s.end(), s.begin(), tolower); // 把字符全部转换成小写 3 int left = 0; 4 int right = s 阅读全文

posted @ 2019-03-01 16:55 爱笑的张飞 阅读(383) 评论(0) 推荐(0) 编辑

c/c++ 中的重要函数

摘要: 1,strtod: 函数原型: 1 #include <cstdlib> 2 double strtod(const char *nptr, char **endptr); 名称含义: strtod(将字符串转换成浮点数) 相关函数: strtof(float),strtol(long int),s 阅读全文

posted @ 2019-03-01 15:24 爱笑的张飞 阅读(329) 评论(0) 推荐(0) 编辑

导航