
Asked in UBS
Preorder Traversal of a BST Problem Statement
Given an array PREORDER
representing the preorder traversal of a Binary Search Tree (BST) with N
nodes, construct the original BST.
Each element in the given array is distinct, and a valid BST can always be constructed from the preorder traversal.
Your task is to construct the BST and return its inorder traversal.
Example:
Input:
PREORDER = [20, 10, 5, 15, 13, 35, 30, 42]
Output:
5 10 13 15 20 30 35 42
Constraints:
1 <= T <= 100
- Number of test cases1 <= N <= 5000
- Number of nodes in each BST0 <= data <= 10^5
- Each BST node's value- Time Limit: 1 sec
Note:
No need to print the results; implement the function to return the inorder traversal of the constructed BST for each test case.

AnswerBot
4mo
Given a preorder traversal of a BST, construct the BST and return its inorder traversal.
Create a binary search tree from the preorder traversal array
Return the inorder traversal of the constructed BST...read more
Help your peers!
Add answer anonymously...
Top C Developer Interview Questions Asked at UBS
Q. Find Maximum Number by At-most K Swaps Given an array of non-negative integers r...read more
Q. BST Node Deletion Problem Given a binary search tree (BST) and a key value K, yo...read more
Q. Sort 0 1 2 Problem Statement Given an integer array arr of size 'N' containing o...read more
Interview Questions Asked to C Developer at Other Companies
Top Skill-Based Questions for UBS C Developer
Algorithms Interview Questions and Answers
250 Questions
Data Structures Interview Questions and Answers
250 Questions
Operating Systems Interview Questions and Answers
250 Questions
C++ Interview Questions and Answers
150 Questions
C Interview Questions and Answers
100 Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

