You are given a binary tree with ‘N’ nodes. Each node has an integer value associated with it. Your task is to print the leaf nodes and then remove these leaf nodes. Now, print the new leaf nodes and repeat the process until the tree becomes empty.
Note:You don’t require to remove the leaf nodes. Just print the values in the required order.
The leaf nodes must be printed in a left to right order.
The first line contains an integer ‘T’, which denotes the number of test cases to be run. Then, the T test cases follow.
The first and only line of each test case contains elements of the binary tree in the level order form. The line consists of values of nodes separated by a single space. In case a node is null, we take -1 in its place.
For example, the input for the tree depicted in the below image would be :
6
-3 3
-1 -1 -1 -1
Explanation :
Level 1 :
The root node of the tree is 6
Level 2 :
Left child of 6 = -3
Right child of 6 = 3
Level 3 :
Left child of -3 = null (-1)
Right child of -3 = null (-1)
Left child of 3 = null (-1)
Right child of 3 = 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).
Note:
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:
6 -3 3 -1 -1 -1 -1
Output Format:
For each test case, print in a separate line the leaf nodes of the tree. After removing the current leaf nodes, print the new leaf nodes in a separate line. Keep repeating the process until the tree becomes empty.
Output for each test case will be printed in a separate line.
Note:
You do not need to print anything. It has already been taken care of. Just implement the given function.
1 <= T <= 100
1 <= N <= 10^5
-10^9 <= node data <= 10^9, (where node data != -1).
Time Limit: 1 sec
1
6 -3 3 -1 -1 -1 -1
-3 3
6
For the first test case, the given binary tree is depicted below.
In the given tree, the leaf nodes are -3 and 3. When we remove these nodes, we will get 6 as the only node present in the tree. We print it in a separate line as it is the only leaf node left in the tree.
1
1 2 1 -1 -1 -1 -1
2 1
1
Think of a solution using depth-first traversal.
The approach is to do a Depth First Traversal. For every node, we calculate the order of that node and then push the value of that node in the corresponding vector. The order of a node denotes the number of steps required to remove that node from the tree. The initial set of leaf nodes will have the order 1. After removing them, the next set of leaf nodes will have order 2 and so on and so forth.
O(N), where ‘N’ is the number of nodes in the given binary tree.
We are calculating the height of the tree, which takes O(N) time. After that, we visit each node only once and push its value in the corresponding vector, so the overall complexity remains O(N).
O(N), where ‘N’ is the number of nodes in the given binary tree.
We need extra linear space to maintain an array that will store all the nodes’ values in the required order.