码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 58. Length of Last Word

时间:2017-12-22 19:48:36      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:ase   pos   nbsp   and   数字   空格   sts   cte   div   

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

标签:ase   pos   nbsp   and   数字   空格   sts   cte   div   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!