题解 | #字符串最后一个单词的长度#

字符串最后一个单词的长度

https://www.nowcoder.com/practice/8c949ea5f36f422594b306a2300315da

#include <iostream>
#include <string>
#include<stack>
using namespace std;

int main() {
    string s1;
    getline(cin,s1);
    stack<int> IndexSt;
    IndexSt.push(0);
    int i=0;
    while(i<s1.length())
    {
      if(s1[i] == ' ')
      {
        IndexSt.push(i+1);
      }
      ++i;
    }
    int ret = 0;
    int last_index = IndexSt.top();
    while(last_index < s1.length())
    {
        ++ret;
        ++last_index;
    }
    cout<<ret<<endl;
    return 0;

}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

比亚迪汽车新技术研究院 硬件工程师 总包21左右 硕士
点赞 评论 收藏
分享
牛客279957775号:铁暗恋
点赞 评论 收藏
分享
粗心的雪碧不放弃:纯学历问题,我这几个月也是一直优化自己的简历,后来发现优化到我自己都觉得牛逼的时候,发现面试数量也没有提升,真就纯学历问题
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务