Algorithm

Tree (트리 구조)

주인장 꼬비 2022. 9. 22. 19:35

Lists - linear (선형)

Trees - nonlinear (비선형) 

 

Tree란?

노드들이 나뭇가지처럼 연결된 비선형 계층적 자료구조

 

Tree structure terminology (Tree 구조에서의 용어 정리)

Root - The top node in a tree  (Node 1)

Child - A node directly connected to another node when moving away from the Root.

Parent - The converse notion of a child.

Siblings - A group of nodes with the same parent.

Leaf - A node with no children.

Edge - The Connection between one node and another.

 

Root : 1번 

4번 노드의 입장에서 5번,6번은 Siblings (Parent Node 가 같기 때문)

Leaf : 4~7번 노드

 

 

'Algorithm' 카테고리의 다른 글

BFS(Breadth First Search) & DFS(Depth First Search)  (0) 2022.09.24
BST (Binary Search Tree)  (0) 2022.09.24
Queue  (0) 2022.09.22
Stack  (0) 2022.09.22
Doubly Linked List (양방향 연결리스트)  (0) 2022.09.11