0
5.3kviews
Construct a binary tree for the pre-order and in order traversal sequences.
Preorder A B D G C E H I F
Inorder D G B A H E I C F

Mumbai University > COMPS > Sem 3 > Data Structures

Marks: 10 M

Year: May 2014

1 Answer
0
845views

Making the nodes according to the preorder sequence and the child nodes according to the inorder sequence,

enter image description here

Please log in to add an answer.