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

 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 };

 

上一篇:住建部:全面提高建筑业信息化水平 增强大数据等五项技术


下一篇:Adobe助力百度解放创意,优化软件管理