Sequences ["A", "B", "C", "D", "E", "F"] (preorder) and ["B", "A", "E", "D", "F", "C"] (inorder)
What can relate to a real-life example application?
Postorder: Used to delete a tree.
Inorder: Used to print data in ordered (ascending) fashion.
Preorder: Used to create a copy of the tree.