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
- 유니티 Rotate
- c++ 문자열 자르기
- 유니티 리소스매니저
- git-lfs
- 유니티 오브젝트 풀링
- 너비 우선 탐색
- c++
- 유니티 InputManager
- ML-Agents
- eulerAngles
- LookRotation
- LFS
- 소스코드 줄번호
- 유니티
- 코드블럭 테마
- Quaternion.Euler
- Mathf.Clamp
- Raycast
- LayerMask
- InputManager
- 유니티 Collision
- 유니티 머신러닝
- 유니티 시야 가림
- 알고스팟
- 이진트리
- 깊이 우선 탐색
- unity
- 오브젝트 풀링
- 유니티 Vector3
- 유니티 ResourceManager
Archives
- Today
- Total
무민은귀여워
[알고스팟] 쿼드 트리 뒤집기 QUADTREE 본문
반응형
https://algospot.com/judge/problem/read/QUADTREE
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 | #include <iostream> #include <string> using namespace std; class Node { public: Node* parent; Node* firstChild; Node* secondChild; Node* thirdChild; Node* fourthChild; char data; Node(char ch) { data = ch; parent = NULL; firstChild = NULL; secondChild = NULL; thirdChild = NULL; fourthChild = NULL; } }; Node* makeTree(string::iterator& it) { char ch = *it; Node* n = new Node(ch); if (ch == 'x') { it++; n->firstChild = makeTree(it); it++; n->secondChild = makeTree(it); it++; n->thirdChild = makeTree(it); it++; n->fourthChild = makeTree(it); } return n; } void solve(Node* n) { cout << n->data; if (n->firstChild != NULL) { Node* temp1 = n->firstChild; n->firstChild = n->thirdChild; n->thirdChild = temp1; Node* temp2 = n->secondChild; n->secondChild = n->fourthChild; n->fourthChild = temp2; solve(n->firstChild); solve(n->secondChild); solve(n->thirdChild); solve(n->fourthChild); } } int main() { int count; cin >> count; while (count--) { string str; cin >> str; string::iterator it = str.begin(); Node* start = makeTree(it); solve(start); cout << endl; } return 0; } | cs |
반응형
'IT > 알고리즘' 카테고리의 다른 글
[백준]1339 단어 수학 (0) | 2021.05.17 |
---|---|
Bubble(버블 정렬), Insertion(삽입 정렬), Quick(퀵 정렬) 소스 (0) | 2019.11.27 |
[코딩인터뷰] 자료구조 (0) | 2019.11.22 |
[알고스팟] 울타리 잘라내기 FENCE (0) | 2019.11.19 |
[알고스팟] 숫자 게임 NUMBERGAME (0) | 2019.11.19 |
Comments