LeetCode题解之To Lower Case

1、题目描述

LeetCode题解之To Lower Case

2、分析

遍历字符串,使用C++ 的 标准库函数 isalpha() 判断字符是否为 字母,然后对其做 tolower() .

3、代码

 string toLowerCase(string str) {
if( str.empty() ) return str; for( string::iterator it = str.begin() ; it != str.end() ; ++it ){
if( isalpha(*it) ){
*it = tolower( *it );
}
}
return str; }
上一篇:C语言中堆内存的开辟和释放与内存处理函数


下一篇:[转]手工释放linux内存——/proc/sys/vm/drop_caches