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
- Gradle
- spring boot
- 서비스 디스커버리
- 유레카
- 이분 탐색
- docker-compose
- Spring Cloud Config
- 도커
- 구현
- Logback
- 이분 매칭
- 완전 탐색
- 트리
- 달팽이
- 비트마스킹
- 백트래킹
- Java
- spring cloud
- 구간 트리
- 스프링 시큐리티
- 다익스트라
- dp
- 주울
- Zuul
- 메모이제이션
- ZuulFilter
- 스택
- 플로이드 와샬
- BFS
- 게이트웨이
Archives
- Today
- Total
Hello, Freakin world!
[백준 1918번][Java] 후위 표기식 - 스택, 후위 표기식 변환 알고리즘 본문
dblab.duksung.ac.kr/ds/pdf/Chap05.pdf
위 pdf에 모든 알고리즘 설명이 들어가 있다.
꽤 유명한 문제였던 듯하다. 하지만 처음 문제를 접하면 풀기 쉽지 않을 듯한 문제다.
import java.io.*;
import java.util.ArrayList;
import java.util.List;
import java.util.Stack;
public class Main {
public static void main(String[] args) throws IOException {
// InputReader reader = new InputReader();
InputReader reader = new InputReader("testcase.txt");
String inOrder = reader.readLine();
System.out.println(solve(inOrder));;
}
private static String solve(String inOrder) {
Stack<Character> stack = new Stack<>();
String ret = "";
for (int i = 0; i < inOrder.length(); i++) {
char c = inOrder.charAt(i);
//문자가 나오는 경우
if(c >= 'A' && c <= 'Z') {
ret += c;
continue;
}
//닫는 괄호가 나오는 경우
if(c == ')') {
while(true) {
if(stack.peek() != '(') ret += stack.pop();
else {
stack.pop(); //여는 괄호 제거
break;
}
}
continue;
}
//연산자끼리 우선순위 비교해서 pop 해야 하는 경우. 반드시 하나만 pop하라는 보장은 없다
while(!stack.isEmpty() && stack.peek() != '(' && c != '('
&& operatorPriority(stack.peek()) >= operatorPriority(c)) {
ret += stack.pop();
}
stack.push(c);
}
while(!stack.isEmpty()) ret += stack.pop();
return ret;
}
private static int operatorPriority(char c) {
if(c == '*' || c == '/') return 2;
return 1;
}
}
class InputReader {
private BufferedReader br;
public InputReader() {
br = new BufferedReader(new InputStreamReader(System.in));
}
public InputReader(String filepath) {
try {
br = new BufferedReader(new FileReader(filepath));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
public List<Character> readLineIntoCharList() throws IOException {
List<Character> l = new ArrayList<>();
while(true) {
int readVal = br.read();
if(readVal == '\n' || readVal == -1) break;
l.add((char)readVal);
}
return l;
}
public boolean ready() throws IOException {
return br.ready();
}
public String readLine() throws IOException {
return br.readLine();
}
public int readInt() throws IOException {
return Integer.parseInt(readLine());
}
public Long readLong() throws IOException {
return Long.parseLong(readLine());
}
}
'알고리즘 > PS' 카테고리의 다른 글
[백준 16234번][Java] 인구 이동 - 그래프 탐색, 구현 (0) | 2020.10.31 |
---|---|
[백준 14890번][Java] 경사로 - 구현, 쉬운 듯 어려운 너 (0) | 2020.10.26 |
[백준 15683번][Java] 감시 - 극한의 구현, 완전 탐색 (0) | 2020.10.24 |
[백준 17070번][Java] 파이프 옮기기 1 - DP, 메모이제이션 (0) | 2020.10.23 |
[백준 2110번][Java] 공유기 설치 - 이분 탐색/중복된 요소 처리 (0) | 2020.10.21 |
Comments