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; } };
分析:
不难。
原文地址:https://www.cnblogs.com/CJT-blog/p/10807713.html
时间: 2024-10-10 21:26:48