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

LeetCode Length of Last Word

时间:2014-06-29 14:13:37      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   os   

bubuko.com,布布扣
class Solution {
public:
    int lengthOfLastWord(const char *s) {
        if (s == NULL) return 0;
        int mlen = 0, len = 0;
        bool inword = false;
        int pos = 0;
        char ch = 0;
        while ((ch = s[pos]) != \0) {
            if (ch !=  ) {
                if (!inword) inword = true;
                len++;
            } else if (inword) {
                if (len > 0) mlen = len;
                len = 0;
                inword = false;
            }
                pos++;
        }
        if (len > 0) mlen = len;
        return mlen;
    }   
};
bubuko.com,布布扣

水一发

LeetCode Length of Last Word,布布扣,bubuko.com

LeetCode Length of Last Word

标签:style   blog   http   java   color   os   

原文地址:http://www.cnblogs.com/lailailai/p/3755799.html

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