首页 > 其他 > 详细

LeetCode 58. Length of Last Word

时间:2017-12-22 19:10:02      阅读:175      评论:0      收藏:0      [点我收藏+]

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


这道题简直太简单,面试都考这样的就好了,需要求最后一个单词的长度,如果不存在最后返回0。而且s只存在字母和空格,不存在其他的字符,只需要从后向前遍历数字符就可以了,代码如下:
 1 class Solution {
 2 public:
 3     int lengthOfLastWord(string s) 
 4     {
 5         int len = 0, tail = s.length() - 1;
 6         while (tail >=0 && s[tail] ==  )
 7             tail--;
 8         while (tail >=0 && s[tail] !=  )
 9         {
10             tail--;
11             len++;
12         }
13         return len;
14     }
15 };

 



LeetCode 58. Length of Last Word

原文:http://www.cnblogs.com/dapeng-bupt/p/8087226.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!