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

422. 最后一个单词的长度

时间:2017-12-05 10:27:46      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:大小写   空格   class   ast   code   存在   write   turn   har   

422. 最后一个单词的长度

给定一个字符串, 包含大小写字母、空格‘ ‘,请返回其最后一个单词的长度。

如果不存在最后一个单词,请返回 0 。

 

class Solution {
public:
    /*
     * @param s: A string
     * @return: the length of last word
     */
    int lengthOfLastWord(string &s) {
    // write your code here
        int size = s.length();
    //找到最后一个不是空格的字母
        bool isStart = false;
        int length = 0;
        for (int i = size - 1; i >= 0; i--) {
            if (check(s[i])) {
                if (!isStart) {
                    isStart = true;
                }
                length++;
            } else {
                if (isStart) {
                    return length;
                }
            }
        }
        return length;
    }
    
    
    bool check(char ch) {
        if ((ch >= ‘a‘ && ch <= ‘z‘) || (ch >= ‘A‘ && ch <= ‘Z‘))
            return true;
        return false;
    }

};

  

422. 最后一个单词的长度

标签:大小写   空格   class   ast   code   存在   write   turn   har   

原文地址:http://www.cnblogs.com/kanekiken/p/7985569.html

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