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 | 31 |
Tags
- 3344
- 탄막 스킬 범위
- 회의실 배정
- 18249
- AI Hub
- 알고리즘
- 자료구조 목차
- 걷는건귀찮아
- 우분투
- 유니티
- 강의실2
- 알고리즘 목차
- 영상 프레임 추출
- 윈도우
- 2020 KAKAO BLIND RECRUITMENT
- 탄막
- 탄막 이동
- 토글 그룹
- SWEA
- 그리디알고리즘
- 원형
- c#
- 마우스 따라다니기
- 백준
- MySQL
- 문자열 압축
- 단어 수학
- mysqld.sock
- 3273
- 수 만들기
Archives
- Today
- Total
와이유스토리
[이진 트리] (CHECK) 프로그래머스 길 찾기 게임 C++ 본문
https://school.programmers.co.kr/learn/courses/30/lessons/42892
#include <vector>
#include <algorithm>
using namespace std;
int n;
vector<vector<int>> answer(2);
struct Node {
int x, y, key;
Node* left;
Node* right;
Node(int x, int y, int key) : x(x), y(y), key(key), left(NULL), right(NULL) {}
};
bool comp(vector<int> a, vector<int> b) {
if (a[1] != b[1]) return a[1] > b[1]; // 내림차순
return a[0] < b[0]; // 오름차순
}
void insertNode(Node* root, vector<int> info) {
if (root->x > info[0]) {
if (root->left == NULL) root->left = new Node(info[0], info[1], info[2]);
else insertNode(root->left, info);
}
else {
if (root->right == NULL) root->right = new Node(info[0], info[1], info[2]);
else insertNode(root->right, info);
}
}
void order(Node* root) {
if (root == NULL) return;
answer[0].push_back(root->key); // 전위 순회
order(root->left);
order(root->right);
answer[1].push_back(root->key); // 후위 순회
}
vector<vector<int>> solution(vector<vector<int>> nodeinfo) {
n = nodeinfo.size(); // 원소 개수
for(int i=0; i<n; i++) nodeinfo[i].push_back(i+1); // 노드 번호
sort(nodeinfo.begin(), nodeinfo.end(), comp); // y 내림차순 정렬
Node* root = new Node(nodeinfo[0][0], nodeinfo[0][1], nodeinfo[0][2]);
for(int i=1; i<n; i++) insertNode(root, nodeinfo[i]); // root 제외
order(root);
return answer;
}
'코딩테스트 > 그래프|트리' 카테고리의 다른 글
[DFS] 프로그래머스 N으로 표현 C++ (0) | 2023.04.14 |
---|---|
[DFS] 백준 테트로미노 C++ (0) | 2023.04.12 |
[트리(순회)] (CHECK) 이진 트리, 전위, 중위, 후위, 레벨 순회 및 트리 복원 C++ (0) | 2023.03.01 |
[BFS+DP] 프로그래머스 블록 이동하기 C++ (0) | 2023.02.27 |
[DFS] 프로그래머스 외벽 점검 C++, Python (0) | 2023.02.26 |
Comments