博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Length of Last Word
阅读量:4544 次
发布时间:2019-06-08

本文共 649 字,大约阅读时间需要 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.

1 public class Solution { 2     public int lengthOfLastWord(String s) { 3         int len = s.length(); 4         int count=0; 5         for(int i=len-1;i>=0;i--){ 6             if(s.charAt(i)==' '&&count==0)continue; 7             else if(s.charAt(i)==' '){ 8                 break; 9             }10             else{11                 count++;12             }13         }14         return count;15     }16 }
View Code

 

 

转载于:https://www.cnblogs.com/krunning/p/3538755.html

你可能感兴趣的文章
c语言诊断_断言库函数#include<assert.h>
查看>>
input type="file"获取文件名方法
查看>>
强力上攻后,缓解期结束,MACD死叉的案例
查看>>
Linux文件权限
查看>>
js替换字符串中特殊字符
查看>>
第一单元OO总结
查看>>
让 Windows7 - 64bit 支持 VC++ 6.0 的解决方法(无法启动此程序,因为计算机中丢失 MSVCRTD.dll。尝试重新安装该程序以解决此问题)...
查看>>
SSH 整合及注意事项
查看>>
带分页的sql语句
查看>>
CS231n Solver.py 详解
查看>>
OC内存管理
查看>>
使用FMDB事务批量更新数据库
查看>>
Android Fragment 真正的完全解析(上)
查看>>
C++面试宝典2011版
查看>>
Android学习笔记——ProgressBar
查看>>
Flume的监控参数
查看>>
第三天记录
查看>>
Centos下关于ssh、scp与rsync设置与应用
查看>>
排列组合+组合数取模 HDU 5894
查看>>
WCF(一) 创建第一个WCF
查看>>