컴퓨터과학/자료구조
<자료구조5> 이진 트리의 운행법
컴퓨터과학
2020. 10. 13. 13:33
Preorder
Root->Left->Right
Inorder
Left->Root->Right
Postorder
Left->Right->Root