博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode 58. length of last word
阅读量:5159 次
发布时间:2019-06-13

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

Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.

If the last word does not exist, return 0.

Note: A word is defined as a character sequence consists of non-space characters only.

For example, 

Given s = "Hello World",
return 5.

从头开始记录字符串的长度,如果是最后一个字符串输出。

class Solution {public:    int lengthOfLastWord(string s) {        int n=s.length();        int l=0;        int l_pre=0;        for(int i=0;i

  

只有后面是字符串的话,才改变length 为0

class Solution {public:    int lengthOfLastWord(string s) {        int n=s.length();        int l=0;        bool start=true;        for(int i=0;i

 

转载于:https://www.cnblogs.com/fanhaha/p/7222181.html

你可能感兴趣的文章
使按钮失效的方法
查看>>
【娱乐】检查你的电脑是“男人”还是“女人”
查看>>
MySQL的system命令在渗透测试中的使用以及UDF提权
查看>>
node,js开发环境的搭建
查看>>
第25月第11天 deeplearning.ai
查看>>
hdu 2117
查看>>
Hibernate查询
查看>>
hive 定时加载分区
查看>>
spark streaming checkpoint
查看>>
HashMap和HashTable之间的区别
查看>>
修改权限
查看>>
Oracle 数据库基本操作——用户管理与文件管理
查看>>
Java环境/安装问题
查看>>
单链表 - 数据结构
查看>>
读写数据
查看>>
How Crushing Machinery Industry Better Develops Itself
查看>>
Spring框架的事务管理之声明式事务管理的类型
查看>>
身为多年的ubuntu用户。。。
查看>>
Educational Codeforces Round 24
查看>>
并查集 - 优化
查看>>