leecode第五十八题(最后一个单词的长度)

Posted cjt-blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leecode第五十八题(最后一个单词的长度)相关的知识,希望对你有一定的参考价值。

技术图片

 

class Solution {
public:
    int lengthOfLastWord(string s) {
        int res=0;
        int len=s.size();
        if(len==0)
            return res;
        
        int index=len-1;
        while(s[index]== )//应对“a__”情况
            index--;
        
        for(int i=index;i>=0;i--)
        {
            if(s[i]!= )
                res++;
            else
                break;
        }
        
        return res;
    }
};

 分析:

不难。

以上是关于leecode第五十八题(最后一个单词的长度)的主要内容,如果未能解决你的问题,请参考以下文章

#yyds干货盘点# 前端歌谣的刷题之路-第五十八题-删除数组的最后一个元素

第五十八题(从尾到头输出链表)

leetcode 简单 第五十八题 计数质数

《剑指offer》第五十八题(左旋转字符串)

《剑指offer》第五十八题II:左旋转字符串

第五十八题——[极客大挑战 2019]FinalSQL