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
- Linux
- 백준
- 2단계로킹
- 데이터베이스 배움터
- SQL
- 언리얼 플러그인
- C++
- UActor
- objtofbx
- Security
- oracle
- command not found
- 오손데이터읽기
- 비재귀셰그먼트
- hackerank
- 민겸수
- UnrealMP
- OS
- Unreal
- FBX
- 1253번
- 트랜잭션 관리
- 실습
- 1759번
- 백준 1253번
- 1967번
- 의미와 무의미의 경계에서
- 5639
- 언리얼 커스텀 플러그인
- 셰그먼트트리
Archives
- Today
- Total
fatalite
트리 순회 - 백준 1991 본문
Problem
티어 : 실버 1
유형 : 트리, 탐색
체감 난이도 : 쉬움
접근 : Node 구조체 및 재귀 탐색
Solution
#include <iostream>
#include <vector>
using namespace std;
struct node {
char name;
node* left = nullptr;
node* right = nullptr;
};
void inorder(node u) {
if (u.left != nullptr) {
inorder(*u.left);
}
cout << u.name;
if (u.right != nullptr) {
inorder(*u.right);
}
}
void preorder(node u) {
cout << u.name;
if (u.left != nullptr) {
preorder(*u.left);
}
if (u.right != nullptr) {
preorder(*u.right);
}
}
void postorder(node u) {
if (u.left != nullptr) {
postorder(*u.left);
}
if (u.right != nullptr) {
postorder(*u.right);
}
cout << u.name;
}
int n;
int main() {
cin >> n;
vector<node> tree(n, node());
for (int i = 0; i <n; i++) {
char a, b, c;
cin >> a >> b >> c;
//cout << int(a);
tree[int(a) - 65].name = a;
if (b != '.') {
tree[int(a) -65].left = &tree[int(b) - 65];
}
if (c != '.') {
tree[int(a) - 65].right = &tree[int(c) - 65];
}
}
preorder(tree[0]);
cout << "\n";
inorder(tree[0]);
cout << "\n";
postorder(tree[0]);
}
'코딩 인터뷰 > C++' 카테고리의 다른 글
☆ 용액 - 백준 2467 (0) | 2023.04.11 |
---|---|
☆ 스티커 - 백준 9465 (1) | 2023.04.09 |
정수삼각형 - 백준 1932 (0) | 2023.04.04 |
N과 M(1) - 백준 15649 (0) | 2023.02.27 |
N과 M(6) - 백준 15655 (0) | 2023.02.26 |