剑指 Offer 58 - I. 翻转单词顺序

这是一个C++代码示例,用于翻转输入英文句子中单词的顺序,同时保持单词内字符的原始顺序。示例输入如'theskyisblue',输出为'blueisskythe'。该算法首先通过遍历和判断空格来分割单词,然后从后往前将单词添加到结果字符串中。
摘要由CSDN通过智能技术生成

题目

输入一个英文句子,翻转句子中单词的顺序,但单词内字符的顺序不变。为简单起见,标点符号和普通字母一样处理。例如输入字符串"I am a student. “,则输出"student. a am I”。

示例一

输入: “the sky is blue”
输出: “blue is sky the”

代码

class Solution {
public:
    string reverseWords(string s) {
        int n = s.size();
        int l = 0, r = 0;
        vector<string> ans;
        while(l < n){
            while(l < n && isspace(s[l])) l++;
            r = l + 1;
            while(r < n && !isspace(s[r])) r++;
            ans.push_back(s.substr(l, r - l));
            while(r < n && isspace(s[r])) r++;
            l = r;
            
        }
        string cnt="";
        if(ans.size() == 0) return cnt;
        for(int i = ans.size() - 1;i > 0;i--){
            cnt += ans[i];
            cnt += " ";
        }
        cnt += ans[0];
        return cnt;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值