码迷,mamicode.com
首页 > 移动开发 > 详细

HappyLeetcode35:Length of Last Word

时间:2014-12-27 23:03:14      阅读:176      评论: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.

For example,
Given s = "Hello World",
return 5.

 

这道题真是费了九牛二虎之力,本来没有多难的题目,自己本来对这道题感觉确实挺简单的。但是很多情况没有考虑周全,导致代码频繁出现bug。最后终于调试通过了

我的代码:

class Solution {
public:
    int lengthOfLastWord(const char *s) {
        if (strlen(s) == 0)
            return 0;
        int length = strlen(s);
        int count = 0;
        while (length - count - 1>=0)
        {
            if ((s[length - count - 1] >= a && s[length - count - 1] <= z || s[length - count - 1] >= A&&s[length - count - 1] <= Z) && length - count - 1 >= 0)
            {
                count++;
                if (length - count  == 0 || s[length - count - 1] ==  )
                    break;
            }
                
            if (s[length - count - 1] ==  )
            {
                length --;
                continue;
            }
                
        }
        return count;
    }
};

在参考别人的代码,真是感觉自愧不如啊。下面的这种解法,又简单又直观

int lengthOfLastWord(const char* s) {
        int len = 0;
        while (*s) {
            if (*s++ !=  )
                ++len;
            else if (*s && *s !=  )
                len = 0;

        }
        return len;
    }

HappyLeetcode35:Length of Last Word

标签:

原文地址:http://www.cnblogs.com/chengxuyuanxiaowang/p/4189233.html

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