

Figure1 : Input BST and Figure2: Output BST
In the above example, For the given BST (Fig.1) and X = 6, we have output( Fig. 2 ) after removing node 6.
The first line of input contains an integer ‘T’, denoting the number of test cases. Then each test case follows.
The first line of each test case contains nodes in the level order form (separated by space). If any node does not have a left or right child, take -1 in its place.
The second and the last line of each test case contains ‘X’ denoting the node to remove.
For example, the input for the tree depicted in the below image.

10
5 15
2 6 -1 -1
-1 -1 -1 -1
Level 1 :
The root node of the tree is 10
Level 2 :
Left child of 10 = 5
Right child of 10 = 15
Level 3 :
Left child of 5 = 2
Right child of 5 = 6
Left child of 15 = null(-1)
Right child of 15 = null (-1)
Level 4 :
Left child of 2 = null (-1)
Right child of 2 = null (-1)
Left child of 6 = null (-1)
Right child of 6 = null (-1)
The first not-null node(of the previous level) is treated as the parent of the first two nodes of the current level. The second not-null node (of the previous level) is treated as the parent node for the next two nodes of the current level and so on.
The input ends when all nodes at the last level are null(-1).
The above format was just to provide clarity on how the input is formed for a given tree.
The sequence will be put together in a single line separated by a single space. Hence, for the above-depicted tree, the input will be given as:
10 5 15 2 6 -1 -1 -1 -1 -1 -1
For each test case, print a single line containing ‘N’-1 single space-separated integers, which is the inorder traversal of updated BST..
The output of each test case will be printed on a separate line.
You do not need to print anything, it has already been taken care of. Just implement the given function.
1 <= T <= 5
1 <= N <= 5 * 10 ^ 3
1 <= nodeVal[i] <= 10 ^ 9
Time Limit: 1 sec.
The deletion of a node in BST is based on the following three observations.
Let the ‘removeNode’ be the function to remove the given node from BST. It accepts two parameters (root node of tree, key node to be deleted). It returns the root of the updated tree.
Let ‘minRightNode’ be the function that returns the minimum value node. It accepts the ‘root’ of the tree. Loop left down to find the leftmost node whose left child is NULL.
The idea is to avoid recursive calls for the deletion of the successor in the right subtree when a node with two children is found. We can use an extra pointer tailing the successor pointer and removing the successor pointer and linking the right subtree of the successor.
Let the ‘removeNode’ be the function to remove the node from BST. It accepts two parameters (root node of tree, key node to be deleted). It returns the root of the updated tree.
Guess Price
Unique BSTs
Unique BSTs
Unique BSTs
Kth Largest Element in BST
Two Sum IV - Input is a BST
Icarus and BSTCOUNT