-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path17413_String.cpp
More file actions
77 lines (60 loc) · 1.41 KB
/
17413_String.cpp
File metadata and controls
77 lines (60 loc) · 1.41 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include <iostream>
#include <string>
#include <stack>
#include <sstream>
#include <vector>
// boj 17413 단어 뒤집기2, 실버 3, 문자열
using namespace std;
string tokenize(string temp){
string result = "";
istringstream ss(temp);
vector<string> tokens;
string tk;
while (getline(ss, tk, ' ')){
tokens.push_back(tk);
}
for (int i = tokens.size()-1; i >=0 ; --i) {
if (i<tokens.size()-1) result += " ";
result += tokens[i];
}
return result;
}
string convertStr(string str){
string result = "";
int i = 0;
stack<string> st;
while (i<str.size()){
if (str[i] == ' '){
result += " ";
i++;
continue;
}
if (str[i] == '<'){
while (str[i] !='>'){
result += str.substr(i++, 1);
}
result += str.substr(i++, 1);
}else{
while (i<str.size() && str[i] != '<'){
st.push(str.substr(i++, 1));
}
string temp = "";
while (!st.empty()){
temp += st.top();
st.pop();
}
result += tokenize(temp);
}
}
return result;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
string str;
getline(cin, str);
string answer = convertStr(str);
cout<<answer;
return 0;
}