Recent questions tagged tree-traversal

2 votes
2 answers
1
1 votes
0 answers
4
If the prefix traversal order of a tree is $*+\mathbf{a} \mathbf{b}-\mathbf{c} \mathbf{d}$. Then, find the equivalent postfix order of the that tree.
1 votes
1 answer
5
The Preorder traversal of a tree given below is:$\text{A B D F E C G I H J K L}$$\text{A B C D E G H F I J K L}$$\text{A B E D F C G H I J K L}$$\text{A B D F E C G I J H...
2 votes
2 answers
7
2 votes
1 answer
8
Traversing a binary tree first root and then left and right subtrees called ______ traversal.postorder.preorder.inorder.none of these.
2 votes
4 answers
10
The post-order traversal of binary tree is $\text{ACEDBHIGF}$. The pre-order traversal is$\text{A B C D E F G H I}$$\text{F B A D C E G I H}$$\text{F A B C D E G H I}$$\t...
0 votes
1 answer
12
0 votes
1 answer
13
0 votes
0 answers
14
Acc. to (question) my solution is...uniquely constructed binary tree PRE+POST and IN+POST…where i am wrong….