-
Notifications
You must be signed in to change notification settings - Fork 0
/
완전 이진 트리.cc
98 lines (75 loc) · 2.11 KB
/
완전 이진 트리.cc
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/** Solution 1.
* 완전 이진트리의 inorder traverse 결과를 가지고, 원본 트리를 추적하는 문제
* 3
* 6 2
* 1 4 5 7 -> inorder: 1 6 4 3 5 2 7
*
* -> index: 1 - 8이라고 하면, 홀수: leaf
* -> index % 4 == 0 -> root
* -> index % 2 == 0 -> level 2.
*
* K가 커지면 안된다.. ㄲㅂ
*/
// #include <iostream>
// #include <algorithm>
// #include <vector>
// #include <utility>
// using namespace std;
// int K;
// vector<pair<int, int>> binary_tree;
// bool compare(pair<int, int> a, pair<int, int> b) {
// return a.second > b.second;
// }
// int main() {
// ios_base::sync_with_stdio(false);
// cin.tie(0);
// cin >> K;
// binary_tree.resize(1025);
// for(int i=1; i < (1 << K); i++) {
// cin >> binary_tree[i].first;
// for(int j = 0; j < K; j++) {
// if (i % (1 << (K - j - 1)) == 0) {
// binary_tree[i].second = K - j;
// break;
// }
// }
// }
// sort(binary_tree.begin() + 1, binary_tree.end(), compare);
// for(int i=1; i < (1<<K); i++) {
// cout << binary_tree[i].first << ' ';
// if ((i & (i+1)) == 0) cout << '\n';
// }
// return 0;
// }
/** Solution 2.
* Sol1과 비슷한 아이디어로 접근. 재귀 사용해서 값 찾기
*
*/
#include <iostream>
#include <vector>
using namespace std;
int K;
vector<int> tree[10];
int inorder[1025];
void solution(int depth, int left, int right) {
if (left >= right) return;
int mid = (left + right) / 2;
tree[depth].push_back(inorder[mid]);
solution(depth + 1, left, mid);
solution(depth + 1, mid + 1, right);
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cin >> K;
for(int i=0; i < (1 << K) - 1; i++)
cin >> inorder[i];
solution(0, 0, (1 << K) - 1);
for(int i=0; i < K; i++) {
for (auto order : tree[i]) {
cout << order << ' ';
}
cout << '\n';
}
return 0;
}