0 0 votes You are given the Post-order traversal of a Binary Search Tree: $[10,30,20,50,70,60$, 40]. What is the In-order traversal of this same tree?$[10,20,30,40,50,60,70]$ $[40,20,60,10,30,50,70]$ $[70,60,50,40,30,20,10]$ It cannot be determined without the Pre-order traversal. Programming in Python goclasses python-&-dsa goclasses-da-dpp goclasses-da-dpp-day-91 goclasses-python-&-dsa-practice-questions + – GO Classes 212 views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
0 0 votes $\text { Inorder of BST always give sorted order }$ GO Classes answered Jan 23 GO Classes comment Share Follow 0 reply Please log in or register to add a comment.