A-Level Computing OCR > Tree/Graph Traversal > Flashcards
What is the sequence for Inorder?
Left, Root, Right
What is the sequence for Preorder?
Root, Left, Right
What is the sequence for Postorder?
Left, Right, Root