Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 스택
- 자료구조
- 백준
- 브루트포스
- 우선순위 큐
- 그리디 알고리즘
- Unreal Engine 5
- 구현
- 정렬
- 수학
- 투 포인터
- VR
- 트리
- 다익스트라
- DFS
- 재귀
- c++
- 알고리즘
- ue5
- 시뮬레이션
- 그래프
- XR Interaction Toolkit
- Team Fortress 2
- 문자열
- 백트래킹
- 누적 합
- 다이나믹 프로그래밍
- BFS
- 유니티
- 유니온 파인드
Archives
- Today
- Total
1일1알
백준 1918번 후위 표기식 C++ 본문
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
enum {
OPERAND,
OPERATOR
};
int GetType(char c) {
if (c >= 'A' && c <= 'Z')
return OPERAND;
return OPERATOR;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
string str;
cin >> str;
stack<char> st;
for (int i = 0; i < str.length(); i++) {
if (GetType(str[i]) == OPERAND) {
cout << str[i];
continue;
}
if (str[i] == '(') {
st.push(str[i]);
continue;
}
if (str[i] == ')') {
while (st.top() != '(') {
cout << st.top();
st.pop();
}
st.pop();
continue;
}
if (str[i] == '+' || str[i] == '-') {
if (st.empty() || st.top() == '(') {
st.push(str[i]);
continue;
}
cout << st.top();
st.pop();
if (!st.empty() && (st.top() == '+' || st.top() == '-')) {
cout << st.top();
st.pop();
}
st.push(str[i]);
continue;
}
if (str[i] == '*' || str[i] == '/') {
if (st.empty() || st.top() == '(') {
st.push(str[i]);
continue;
}
if (st.top() == '*' || st.top() == '/') {
cout << st.top();
st.pop();
}
st.push(str[i]);
}
}
while (!st.empty()) {
cout << st.top();
st.pop();
}
};
'알고리즘' 카테고리의 다른 글
백준 14938번 서강그라운드 C++ (0) | 2022.06.25 |
---|---|
백준 2263번 트리의 순회 C++ (0) | 2022.06.22 |
백준 1167 트리의 지름 C++ (0) | 2022.06.20 |
백준 1865번 웜홀 C++ (0) | 2022.06.19 |
백준 11404번 플로이드 C++ (0) | 2022.06.18 |