版权声明:转载请联系本人,感谢配合!本站地址:http://blog.csdn.net/nomasp https://blog.csdn.net/NoMasp/article/details/50592917
翻译
给定一个包含大小写字母和空格字符的字符串,
返回该字符串中最后一个单词的长度。
如果最后一个单词不存在,返回0。
批注:
一个单词被定义为包含非空字符的字符序列。
例如,
给定 S = "Hello World",
返回 5。
原文
Given a string s consists of upper/lower-case alphabets and empty space characters ' ',
return the length of last word in the string.
If the last word does not exist, return 0.
Note:
A word is defined as a character sequence consists of non-space characters only.
For example,
Given s = "Hello World",
return 5.
分析
灵活使用find函数套装……
int lengthOfLastWord(string s) {
int index = s.find_last_not_of(' ');
return index == -1 ? 0 : index - s.find_last_of(' ', index);
}