Tree/Graph Traversal Flashcards
(3 cards)
1
Q
What is the sequence for Inorder?
A
Left, Root, Right
2
Q
What is the sequence for Preorder?
A
Root, Left, Right
3
Q
What is the sequence for Postorder?
A
Left, Right, Root