字符串,翻转(单词本身没有翻转,只是在句子中的位置发生改变)

Posted zhang-zsq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串,翻转(单词本身没有翻转,只是在句子中的位置发生改变)相关的知识,希望对你有一定的参考价值。

题意为,输入“I am zhang.” 输出“zhang. am I”.

我的思路是先将每个单词翻转,然后再讲整个句子翻转。

注意怎么识别单个单词,一种是空格,另一种是句子的结尾。

 

技术图片

 

#include<bits/stdc++.h>
using namespace std;
void Reverse(string &s, int start, int end)
{
    while(start < end)
    {
        char c = s[start];
        s[start] = s[end];
        s[end] = c;
        start ++;
        end--;
    }
}
string reverseSentence(string sentence)
{
    int Size = sentence.size();
    Reverse(sentence, 0, Size - 1);
    int start = 0, end = 0;
    while(start < Size)
    {
        if (sentence[start] ==  )
        {
            start ++;
            end ++;
        }
        else if(sentence[end] ==   || end == Size)
        {
            Reverse(sentence, start, end - 1);
            start = end;

        }
        else
        {
            end++;
        }
    }
    return sentence;
}
int main()
{
    int n;
    string str;
    cin>>n;
    getchar();
    for(int i = 1; i <= n; i++)
    {
        getline(cin,str);
        cout<<"Case "<<i<<":"<<reverseSentence(str)<<endl;
    }
    return 0;
}

 

以上是关于字符串,翻转(单词本身没有翻转,只是在句子中的位置发生改变)的主要内容,如果未能解决你的问题,请参考以下文章

翻转单词顺序

单词翻转

4104:单词翻转

27:单词翻转

单词翻转

1205 单词翻转