-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path17413.cpp
56 lines (53 loc) · 999 Bytes
/
17413.cpp
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
// 17413. 단어 뒤집기 2
// 2022.03.17
// 자료구조, 스택
#include<iostream>
#include<stack>
#include<string>
using namespace std;
int main()
{
stack<char> st;
string s;
getline(cin, s);
for (int i = 0; i < s.size(); i++)
{
if (s[i] == '<')
{
while (!st.empty())
{
cout << st.top();
st.pop();
}
while (1)
{
cout << s[i];
if (s[i] == '>')
{
break;
}
i++;
}
}
else if (s[i] == ' ')
{
while (!st.empty())
{
cout << st.top();
st.pop();
}
cout << " ";
}
else
{
st.push(s[i]);
}
}
// 남은거 출력
while (!st.empty())
{
cout << st.top();
st.pop();
}
return 0;
}