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第五十八题(最后一个单词的长度)的主要内容,如果未能解决你的问题,请参考以下文章