- 코드
정답 코드 : 처음 풀어 본 트리 문제이다. 노드 클래스를 생성하여서 클래스 배열로 접근하였다.
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Main {
static class NODE {
String val;
int parent, right, left;
public NODE(String val) {
this.val = val;
this.parent = this.right = this.left = -1;
}
};
static int N;
static NODE array[];
static String s;
static void preOrder(int node) {
System.out.print(array[node].val);
if (array[node].left > -1)
preOrder(array[node].left);
if (array[node].right > -1)
preOrder(array[node].right);
}
static void inOrder(int node) {
if (array[node].left > -1)
inOrder(array[node].left);
System.out.print(array[node].val);
if (array[node].right > -1)
inOrder(array[node].right);
}
static void postOrder(int node) {
if (array[node].left > -1)
postOrder(array[node].left);
if (array[node].right > -1)
postOrder(array[node].right);
System.out.print(array[node].val);
}
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
array = new NODE[26];
N = Integer.parseInt(br.readLine());
for (int i = 0; i < 26; i++) {
array[i] = new NODE(Character.toString((char) (i + 'A')));
}
for (int i = 0; i < N; i++) {
char a, b, c;
s = br.readLine();
a = s.charAt(0);
b = s.charAt(2);
c = s.charAt(4);
if (b != '.') {
array[a - 'A'].left = b - 'A';
array[b - 'A'].parent = a - 'A';
}
if (c != '.') {
array[a - 'A'].right = c - 'A';
array[c - 'A'].parent = a - 'A';
}
}
preOrder(0);
System.out.println();
inOrder(0);
System.out.println();
postOrder(0);
System.out.println();
}
}
'algorithm' 카테고리의 다른 글
[JAVA] 백준 17070번 : 파이프 옮기기 1 (0) | 2020.10.07 |
---|---|
[JAVA] 백준 11051번 : 이항 계수 2 (0) | 2020.10.06 |
[JAVA] 백준 12865번 : 평범한 배낭 (0) | 2020.10.05 |
[JAVA] 백준 11401번 : 이항 계수 3 (0) | 2020.10.04 |
[JAVA] 백준 10989번 : 수 정렬하기 3 (0) | 2020.10.04 |