250x250
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
- 백준2251
- 코테
- 에라토스테네스의채
- BFS
- 정올 1620
- 완전탐색
- 파티션 크기 조정
- 순열
- 백준15652
- 백준13458
- 재귀함수
- java
- D드라이브생성
- 자바
- 백준
- 코테준비
- 주사위굴리기2
- 자바 코테
- 완탐
- 중복조합
- N과M
- 볼륨 만들기
- 알고리즘개념
- 정보처리기사
- 중복순열
- Bfs와DFS
- 삼성역테
- 알고리즘
- 23288
- 전화번호속의암호
Archives
- Today
- Total
뚱땅뚱땅
[문제] 백준 1918번 후위표기식 본문
728x90
중위 -> 후위 표기식 변경 방법
1. 피연산자 -> 출력
2. * / 는 스택에 push
단, 스택이 비어있지 않고 top에 * / 가 있다면 pop하고 스택에 push 한다.
3. + - 는 스택에 push
단. 스택이 비어있지 않은 경우, 빌 때 까지 pop한 후에 스택에 넣는다.
스택에 ( 가 있다면, ( 가 나올 때 까지만 pop한다. 그 후, 스택에 넣는다.
4. ( 가 나오면 스택에 push
5. ) 가 나오면 ( 만날 때까지 pop한다.
6. 모든 과정이 끝나면 -> 스택 비어있을 때까지 pop
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String s = in.readLine();
int len = s.length();
String postS = postfix(s, len);
System.out.println(postS);
}
static String postfix(String s, int len) {
StringBuilder sb = new StringBuilder();
Stack<Character> stack = new Stack<>();
for (int i = 0; i < len; i++) {
char c = s.charAt(i);
if (c == '*' || c == '/') {
if (!stack.isEmpty()) {
if (stack.peek() == '*' || stack.peek() == '/') {
sb.append(stack.pop());
}
}
stack.push(c);
} else if (c == '+' || c == '-') {
if(stack.isEmpty()) {
stack.push(c);
}else {
while(!stack.isEmpty()) {
if(stack.peek()=='(') break;
sb.append(stack.pop());
}
stack.push(c);
}
}
else if(c == '(') {
stack.push(c);
}
else if(c == ')') {
while(stack.peek() != '(') {
sb.append(stack.pop());
}
stack.pop();
}else {
sb.append(c);
}
}
while(!stack.isEmpty()) {
sb.append(stack.pop());
}
return sb.toString();
}
}
728x90
'알고리즘 > 백준' 카테고리의 다른 글
[문제] 백준 2667번 단지번호 붙이기 (0) | 2021.02.08 |
---|---|
[문제] 백준 1935번 후위 표기식2 (0) | 2021.02.07 |
[문제] 백준 10819번 차이를 최대로 (0) | 2021.02.05 |
[문제] 백준 2493번 탑 (0) | 2021.02.04 |
[문제] 백준 6603번 로또 (0) | 2021.02.04 |
Comments