construct post order transversal for the constructed tree with the given in-order and pre-order transversal
In-order:9 7 10 6 8
pre-order:6 7 9 10 8
Answers
Answered by
0
Answer:
post Order [ ] = { 7 9 6 10 8 }
Step-by-step explanation:
Out Put
6
/\
7
/\
8
/\
9 10
In Order= Left Root Right
pre Order= Root Left Right
post Order= Left Right Root
Note:
You Don't Give Tree Structure , We Can't Solve This Question without Tree Structure
Please Add The Tree Structure
Similar questions