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
- 정렬
- 트리
- 유니티
- XR Interaction Toolkit
- BFS
- 다익스트라
- Team Fortress 2
- 우선순위 큐
- 문자열
- 재귀
- 그래프
- 다이나믹 프로그래밍
- DFS
- ue5
- 누적 합
- VR
- 그리디 알고리즘
- 시뮬레이션
- 알고리즘
- 자료구조
- c++
- 백트래킹
- 구현
- Unreal Engine 5
- 수학
- 투 포인터
- 백준
- 스택
- 유니온 파인드
- 브루트포스
Archives
- Today
- Total
1일1알
백준 5639번 이진 검색 트리 C++ 본문
전위 순회로 나온 노드의 키들로 순서대로 새로운 트리를 만들면 동일한 트리가 나온다.
입력으로 새로운 트리를 만들어서 후위 순회한 결과를 출력하였다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
struct Node {
Node(int key) :key(key) {}
Node* parent = nullptr;
Node* left = nullptr;
Node* right = nullptr;
int key;
};
Node* root = nullptr;
void Insert(int key) {
Node* newNode = new Node(key);
if (root == nullptr) {
root = newNode;
return;
}
Node* parent = nullptr;
Node* curr = root;
while (curr) {
parent = curr;
if (curr->key > key)
curr = curr->left;
else
curr = curr->right;
}
newNode->parent = parent;
if (parent->key < key)
parent->right = newNode;
else
parent->left = newNode;
}
void Print(Node* node) {
if (node == nullptr)
return;
Print(node->left);
Print(node->right);
cout << node->key << "\n";
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int key;
while (cin >> key) {
Insert(key);
}
Print(root);
};
'알고리즘' 카테고리의 다른 글
백준 1753번 최단경로 C++ (0) | 2022.06.16 |
---|---|
백준 1504번 특정한 최단 경로 C++ (0) | 2022.06.15 |
백준 1916번 최소비용 구하기 C++ (0) | 2022.06.13 |
백준 1991번 트리 순회 C++ (0) | 2022.06.12 |
백준 1629번 곱셈 C++ (0) | 2022.06.11 |