其他分享
首页 > 其他分享> > leetcode每日一题 434. 字符串中的单词数

leetcode每日一题 434. 字符串中的单词数

作者:互联网

统计字符串中的单词个数,这里的单词指的是连续的不是空格的字符。

请注意,你可以假定字符串里不包括任何不可打印的字符。
示例:

输入: "Hello, my name is John"
输出: 5
解释: 这里的单词是指连续的不是空格的字符,所以 "Hello," 算作 1 个单词。
class Solution {
public:
    int countSegments(string s) {
        int sum=0;
        for(int i=0;i<s.length();i++)
        {
            if(s[i]!=' ')
            {
                while(s[i]!=' ' && i<s.length())
                    i++;
                sum++;
            }
        }
        return sum;
    }
};

标签:字符,int,Hello,单词,字符串,434,空格,leetcode
来源: https://blog.csdn.net/henulmh/article/details/120637791