题解 | #倒置字符串#

倒置字符串

https://www.nowcoder.com/practice/ee5de2e7c45a46a090c1ced2fdc62355

#include <algorithm>
#include <cstdio>
#include <iostream>
#include <string>
using namespace std;

int main() {
    string ret;
    getline(cin, ret);
    reverse(ret.begin(), ret.end());
    int i = 0;
    int cut = 0;
    int n = ret.size();
    while (i < n) {
        while (i<n&& ret[i] != ' ') {
            i++;
        }
        reverse(ret.begin()+cut, ret.begin()+i);
         while (i<n&& ret[i] == ' ') {
            i++;
        }
        cut=i;
    }

    cout << ret << endl;
    return 0;
}

全部评论

相关推荐

小浪_Coding:找硬件测试,也可兼顾软测欧, 简历还可以的 ,注意排版,项目写的有条理一点, 然后个人技能多加点, 润色好简历之后就开始沟通海投了,深圳,东莞这边做硬件相关的公司还不少, 医疗类,仪器类的都可以尝试
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务