[leetcode] 434. Number of Segments in a String

网友投稿 592 2022-10-20

[leetcode] 434. Number of Segments in a String

[leetcode] 434. Number of Segments in a String

Description

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

分析

题目的意思是:统计出一个字符串里面的单词。

这道题是easy类型的题目,但是不仔细处理空格的话,就可能AC不全。思路很简单,从头到尾的遍历,遇见空格之后又遇到字符,说明前面已经遍历了一个单词,就进行+1操作。最后将统计结果返回就行了。

代码

class Solution {public: int countSegments(string s) { int cnt=0; int n=s.length(); for(int i=0;i

参考文献

​​[LeetCode] Number of Segments in a String 字符串中的分段数量​​

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Tellurium- 开源自动测试框架
下一篇:silly- 高并发服务器框架
相关文章

 发表评论

暂时没有评论,来抢沙发吧~