题解 | #字符串最后一个单词的长度#
字符串最后一个单词的长度
https://www.nowcoder.com/practice/8c949ea5f36f422594b306a2300315da
若字符串最后有一个或多个空格,代码运行结果为0;
本人改进算法可以避免此异常情况出现。
#include<string>
#include<iostream>
using namespace std;
int main()
{
string str;
getline(cin,str);
int index_of_black = str.find_last_of(' ');
while (index_of_black+1 == str.length())
{
if(!str.empty()){
str.pop_back();
}
index_of_black = str.find_last_of(' ');
/* code */
}
cout<<str.length()-index_of_black-1;
return 0;
}
