비선형 데이터구조, 트리(Tree) #2 이진 트리의 특징

2021. 9. 23. 17:11DataStructure

이진 트리는 하나의 노드가 최대 2개의 자식 노드를 가질 수 있기 때문에 다음 레벨로 올라갈수록 곱하기 2합니다.

 

 

References

source code : https://github.com/yonghwankim-dev/DataStruct
https://www.geeksforgeeks.org/binary-tree-set-2-properties/