the pre-order traversal of binary search tree is 10,5,1,7,40,50. what is the post-order transversal of tree?
Answers
Answered by
1
Answer:
preorder follows the sequence as 10,5,1,7,40,50 it means root comes first then left subtree and then right subtree. Explanation: preorder follows the sequence as 10,5,1,7,40,50 it means root comes first then left subtree and then right subtree
Explanation:
Similar questions