Binary Trees
1. Show the diagram of the binary tree given the following characters. Please perform the following traversals: Inorder, Preorder, Postorder.
Given the following traversals, draw the binary tree:
Inorder: 42, 50, 79, 80, 85, 88, 91, 92, 95, 97
Preorder: 42, 50, 79, 80, 85, 88, 91, 92, 97, 95
Postorder: 42, 50, 85, 80, 79, 91, 92, 97, 95, 88