内容简介: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
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; } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
数据挖掘导论
Pang-Ning Tan、Michael Steinbach、Vipin Kumar / 范明、范宏建 / 人民邮电出版社 / 2010-12-10 / 69.00元
本书全面介绍了数据挖掘,涵盖了五个主题:数据、分类、关联分析、聚类和异常检测。除异常检测外,每个主题都有两章。前一章涵盖基本概念、代表性算法和评估技术,而后一章讨论高级概念和算法。这样读者在透彻地理解数据挖掘的基础的同时,还能够了解更多重要的高级主题。 本书是明尼苏达大学和密歇根州立大学数据挖掘课程的教材,由于独具特色,正式出版之前就已经被斯坦福大学、得克萨斯大学奥斯汀分校等众多名校采用。 ......一起来看看 《数据挖掘导论》 这本书的介绍吧!