본문 바로가기

정보처리산업기사/데이터베이스

[데이터베이스]이진 트리 운행법-hoyhi-tistory

  • 전위(Preorder) 운행 : Root -> Left -> Right
  • 중위(Inorder) 운행 : Left -> Root -> Right
  • 후위(Postorder) 운행 : Left -> Right -> Root

전위 운행 : Root -> Left -> Right

1 -> 2 -> 4 -> 8 -> 5 -> 3 -> 6 -> 7

중위 운행 : Left -> Root -> Right

8 -> 4 -> 2 -> 5 -> 1 -> 6 -> 3 -> 7

후위 운행 : Left -> Right -> Root

8 -> 4 -> 5 -> 2 -> 6 -> 7 -> 3 -> 1