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

[LintCode] 最后一个单词的长度

时间:2015-06-28 16:53:33      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

 1 class Solution {
 2 public:
 3     /**
 4      * @param s A string
 5      * @return the length of last word
 6      */
 7     int lengthOfLastWord(string s) {
 8         int len = 0, tail = s.length() - 1;
 9         while (tail >= 0 && s[tail] ==  ) tail--;
10         while (tail >= 0 && s[tail] !=  ) {
11             len++;
12             tail--;
13         }
14         return len;
15     }
16 };

 

[LintCode] 最后一个单词的长度

标签:

原文地址:http://www.cnblogs.com/jcliBlogger/p/4605679.html

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