博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
#Leetcode# 434. Number of Segments in a String
阅读量:5336 次
发布时间:2019-06-15

本文共 645 字,大约阅读时间需要 2 分钟。

 

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 += ' ';        int len = s.length();        int ans = 0;        for(int i = 0; i < len; i ++) {            if(s[i] == ' ') continue;            ans ++;            while(i < len && s[i] != ' ') i ++;        }        return ans;    }};

  遍历字符串 判断空格之间夹的就是单词了 之前做过 HDU 的单词数 和这个差不多啦

 

转载于:https://www.cnblogs.com/zlrrrr/p/10409713.html

你可能感兴趣的文章
Zookeeper一致性级别
查看>>
单例模式的几种实现方式及对比
查看>>
邓白氏编码 申请
查看>>
Linux远程登录
查看>>
Linux自己安装redis扩展
查看>>
HDU 1016 Prime Ring Problem(dfs)
查看>>
C#中结构体与字节流互相转换
查看>>
session和xsrf
查看>>
跟随大神实现简单的Vue框架
查看>>
Linux目录结构
查看>>
LeetCode-Strobogrammatic Number
查看>>
luoguP3414 SAC#1 - 组合数
查看>>
五一 DAY 4
查看>>
(转)接口测试用例设计(详细干货)
查看>>
【译】SSH隧道:本地和远程端口转发
查看>>
win8.1安装Python提示缺失api-ms-win-crt-runtime-l1-1-0.dll问题
查看>>
图片点击轮播(三)-----2017-04-05
查看>>
判断两个字符串是否相等【JAVA】
查看>>
直播技术细节3
查看>>
《分布式服务架构:原理、设计于实战》总结
查看>>