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

letecode [58] - Length of Last Word

时间:2019-06-04 11:24:41      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:nsis   第一个   character   包含   def   public   大小写   empty   last   

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.

题目大意:

  给定一个仅包含大小写字母和空格的字符串,输出最后一个单词的长度

理解:

  从后往前遍历字符串,遇到第一个单词后的空格即停止,输出这个单词的长度。

  需要注意的是,末尾可能有多个空格,应先过滤掉这些空格,再计算单词的长度。

代码C++:

class Solution {
public:
    int lengthOfLastWord(string s) {
        int n = s.length();
        if(n==0) return 0;
        int blank=n-1,i;
        for(i=n-1;i>=0;--i){
            if(s[i]== ){
                if(i==blank){
                    --blank;
                    continue;
                }
                break;
            }
        }
        return blank-i;
    }
};

运行结果:

  执行用时 : 4 ms  内存消耗 : 8.8 MB

letecode [58] - Length of Last Word

标签:nsis   第一个   character   包含   def   public   大小写   empty   last   

原文地址:https://www.cnblogs.com/lpomeloz/p/10972289.html

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