Count the number of segments in a string, where a segment is defined to be a contiguous sequence of non-space characters.
Please note that the string does not contain any non-printable characters.
Example:
Input: “Hello, my name is John”
Output: 5
不得不说这是一道垃圾题,做一个转换就好了。
class Solution {
public:
int countSegments(string s) {
s=" "+s+" ";
int count=0;
for(int i=0;i<s.size()-1;i++){
if(s[i]==' '&&s[i+1]!=' ')count++;
}
return count;
}
};
本文介绍了一种通过遍历字符串并检查空格来计算非空格字符连续段数量的方法。给出的示例代码实现了一个简单的算法,该算法可以计算出如'Hello,mynameisJohn'这样的输入字符串中有5个独立的词汇单元。
463

被折叠的 条评论
为什么被折叠?



