关关的刷题日记 49 – Leetcode 434. Number of Segments in a String

关关的刷题日记49 – Leetcode 434. Number of Segments in a String

题目

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

题目的意思是找出一个字符串由几部分构成,每一部分是一串连续的字符,以空格为分隔符。

思路

思路:和关关的刷题日记48 – Leetcode 58. Length of Last Word方法2的思路是一样的,不重复说了。


class Solution {
public:
    int countSegments(string s) {
        stringstream ss(s);
        int count=0;
        string temp;
        while(getline(ss, temp, ' '))
        {
            if(!temp.empty())
                ++count;
        }
        return count;
    }
};

人生易老,唯有陪伴最长情,加油!

以上就是关关关于这道题的总结经验,希望大家能够理解,有什么问题可以在我们的专知公众号平台上交流或者加我们的QQ专知-人工智能交流群 426491390,也可以加入专知——Leetcode刷题交流群(请先加微信小助手weixinhao: Rancho_Fang)。 同时请,关注我们的公众号,获取最新关于专知以及人工智能的资讯、技术、算法等内容。扫一扫下方关注我们的微信公众号。

图片

展开全文
相关主题
Top
微信扫码咨询专知VIP会员