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
- Algorithm
- html
- DoM
- while
- CSS
- mysql
- data structure
- php
- javascript
- DB
- architecture
- for
- XML
- MacOS
- system
- MIPS
- Pipelining
- function
- react
- Class
- Java
- DATAPATH
- control
- DS
- instruction
- web
- python
- Linux
- computer
- github
Archives
- Today
- Total
YYYEJI
[DS] 트리순회(Tree Traversal)란? 본문
728x90
트리순회(Binary tree Traversal)란?
모든 node에 대하여 중복이나 누락없이 일정 순서로 모든 node를 방문하는 방법을 나타냅니다.
① 전위순회(preorder traversal) - node → left → right
현재 node를 방문 후 left, right node를 방문
② 중위순회(inorder traversal) - left → node → right
left node 방문 후 현재 node, right node를 방문
③ 후위순회(postorder traversal) - left → right → node
left, right node 방문 후 현재 node를 방문
아래 트리로 예를 들어보겠습니다.
① 전위순회(preorder traversal)
a - b - d - e - c - f- g - h
② 중위순회(inorder traversal)
d - b - e- a- c - g - f - h
③ 후위순회(postorder traversal)
d - e - b - g - h - f- c - a
◡̈
'Data structure' 카테고리의 다른 글
[DS] 이진탐색트리(Binary Search Tree)란? (2) | 2023.01.04 |
---|---|
[DS] 힙(Heap)이란? (0) | 2023.01.03 |
[DS] 이진트리(Binary Tree)란? (0) | 2022.12.29 |
[DS] 트리(Tree)에서 이진트리(Binary Tree)로 변환하는 방법 (0) | 2022.12.29 |
[DS] 트리(Tree)와 이진트리(Binary Tree)란? (0) | 2022.12.29 |