题目: 翻转单词顺序列
- 热度指数:5140 时间限制:1秒 空间限制:32768K
- 本题知识点: 字符串
题目描述
牛客最近来了一个新员工Fish,每天早晨总是会拿着一本英文杂志,写些句子在本子上。同事Cat对Fish写的内容颇感兴趣,有一天他向Fish借来翻看,但却读不懂它的意思。例如,“student. a am I”。后来才意识到,这家伙原来把句子单词的顺序翻转了,正确的句子应该是“I am a student.”。Cat对一一的翻转这些单词顺序可不在行,你能帮助他么?
在线提交网址: http://www.nowcoder.com/practice/3194a4f4cf814f63919d0790578d51f3?tpId=13&tqId=11197&rp=1
分析:
逐个字符进行读取, 如果遇到空格则进行字符串的反向拼接, 否则保持当前单词中的字符顺序, 最后将结果输出即可.
下面是AC后代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include<cstdio>
#include<iostream>
#include<string>
using namespace std;
class Solution {
public:
string ReverseSentence(string str) {
string res, temp; // temp表示当前单词, res表示最后输出的字符串
for(unsigned int i=0; i != str.size(); i++)
{
if(str[i] == ' ')
{
res = " " + temp + res; // 反向进行拼接
temp = "";
}
else temp += str[i]; // 保持当前单词中的字符顺序
}
if(temp.size() != 0)
res = temp + res;
return res;
}
};
int main()
{
Solution sol;
string str;
cin>>str;
string res = sol.ReverseSentence(str);
for(auto i: res)
cout<<i;
return 0;
}
版权声明
- 本文作者:极客玩家大白
- 本文链接:https://yanglr.github.io/reverse-word-order-solution.html
- 郑重声明:本文为博主原创或经授权转载的文章,欢迎转载,但转载文章之后必须在文章页面明显位置注明出处,否则保留追究法律责任的权利。如您有任何疑问或者授权方面的协商,请留言。
Show Disqus Comments