β’ The left subtree of a node contains only nodes with data less than the nodeβs data.
β’ The right subtree of a node contains only nodes with data greater than the nodeβs data.
β’ Both the left and right subtrees must also be binary search trees.
It is guaranteed that a BST can be always constructed from the given preorder traversal. Hence, the answer will always exist.
From PREORDER = [20, 10, 5, 15, 13, 35, 30, 42] , the following BST can be constructed:
The first line contains an integer 'T' which denotes the number of test cases or queries to be run. Then the test cases follow.
The first line of each test case contains a single integer 'N' denoting the number of nodes in BST.
The second line of each test case contains 'N' single space-separated integers representing the preorder traversal of BST.
Print the inorder traversal of the constructed BST where all nodes are printed in a single-space separated manner.
Output for every test case will be printed in a separate line.
Note:
You don't need to print anything. It has already been taken care of. Just implement the function.
1 <= T <= 100
1 <= N <= 5000
0 <= data <= 10^5
Where 'data' denotes data contained in the nodes of the binary search tree.
Time Limit: 1 sec
We have a simple Brute Force solution for this problem. We will traverse the PREORDER array, find the left subtree and right subtree and then recursively construct the tree as follows-
The idea is based on the fact that the value of each node in a BST is greater than the value of all nodes in its left subtree and less than the value of all nodes in its right subtree.
So, instead of explicitly searching for indices that split the left and the right subtree (as in the previous approach), we will pass the information about the valid range of values for a node and its children in recursion itself.