-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1991.cpp
68 lines (62 loc) · 866 Bytes
/
1991.cpp
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
1991 : 트리 순회
https://www.acmicpc.net/problem/1991
https://github.com/tjdskaqks
http://jcoder1.tistory.com/
*/
#include <iostream>
using namespace std;
typedef struct node
{
char left;
char right;
}node;
node arr[27];
void preorder(char c)
{
if (c == '.')
return;
else
{
cout << c;
preorder(arr[c].left);
preorder(arr[c].right);
}
}
void inorder(char c)
{
if (c == '.')
return;
else
{
inorder(arr[c].left);
cout << c;
inorder(arr[c].right);
}
}
void postorder(char c)
{
if (c == '.')
return;
else
{
postorder(arr[c].left);
postorder(arr[c].right);
cout << c;
}
}
int main()
{
int n, i;
char c1, c2, c3;
cin >> n;
for (i = 0; i < n; i++)
{
cin >> c1 >> c2 >> c3;
arr[c1].left = c2;
arr[c1].right = c3;
}
preorder('A'); cout << "\n";
inorder('A'); cout << "\n";
postorder('A'); cout << "\n";
}