1991 : 트리 순회

풀이

아 퇴사하고싶다

코드

#include <stdio.h>
#define p(c) putchar(c);

int n, i;
char a, b, c, t[99][2];

void f(int x) {
	if (i == 0) p(x);
	if (t[x][0] != '.') f(t[x][0]);
	if (i == 1) p(x);
	if (t[x][1] != '.') f(t[x][1]);
	if (i == 2) p(x);
}

int main() {
	scanf("%d", &n);
	for (i = 0; i < n; i++) {
		scanf(" %c %c %c", &a, &b, &c);
		t[a][0] = b, t[a][1] = c;
	}
	for (i = 0; i < 3; i++) f('A'), puts("");
	return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2018-01-23 15:34

Read more posts by this author