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

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

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.

Example:Input: "Hello World"Output: 5

难度:easy

题目:

给定字符串包含大小写字母和空格,返回最后一个单词的长度。
如果最后一个单词不存在,则返回0.

Runtime: 3 ms, faster than 62.11% of Java online submissions for Length of Last Word.

Memory Usage: 21.5 MB, less than 96.23% of Java online submissions for Length of Last Word.

public class Solution {    public int lengthOfLastWord(String s) {        if (null == s || s.trim().isEmpty()) {            return 0;        }        s = s.trim();        int wordLength = 0;        for (int i = s.length() - 1; i >= 0; i--) {            if (s.charAt(i) == ' ') {                return wordLength;            } else {                wordLength++;            }        }                return wordLength;    }}

转载地址:http://xsizo.baihongyu.com/

你可能感兴趣的文章
Linux内核源码详解——命令篇之iostat[zz]
查看>>
Sqlserver2000联系Oracle11G数据库进行实时数据的同步
查看>>
明年计划
查看>>
ORACLE功能GREATEST功能说明具体实例
查看>>
DataGridView 输入数据验证格式(实例)
查看>>
HDOJ 2151
查看>>
Foundation框架 - 快速创建跨平台的网站页面原型
查看>>
open-falcon
查看>>
三菱plc输出指示灯不亮怎么办(转载)
查看>>
doc2vec使用说明(一)gensim工具包TaggedLineDocument
查看>>
Q:图像太大,在opencv上显示不完全
查看>>
修正锚点跳转位置 避免头部fixed固定部分遮挡
查看>>
利用ItextPdf、core-renderer-R8 来生成PDF
查看>>
irc操作小记
查看>>
NavigationController的使用
查看>>
多线程编程之Windows环境下创建新线程
查看>>
CentOS 7使用systemctl如何补全服务名称
查看>>
Unity3D NGUI 给button按钮添加单间事件
查看>>
密码的校验.大小写字母,数字,特殊字符中的至少3种
查看>>
ios 不同sdk4.3 6.0版本号,关于方法的兼容性的通用方法
查看>>