Clone a binary tree with random pointers.

Moderate
0/80
Average time to solve is 10m
profile
Contributed by
18 upvotes
Asked in companies
SamsungAmazonExpedia Group

Problem statement

You are given a binary tree. Apart from the left and right child pointers, each node in the given binary tree points to a random node in the given binary tree. You are supposed to return a clone of the binary tree.

Cloning a binary tree means making a deep copy of the input binary tree.

Note :
Two nodes may have the same value associated with them.
The root node will be fixed and will be provided in the function.
Detailed explanation ( Input/output format, Notes, Images )
Input Format :
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 elements 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. So -1 would not be a part of the tree nodes.

The second line of each test case contains the values of the nodes of the tree in the random order ( -1 for NULL node), connecting the node values of the original tree with random nodes of the tree.

For example, the input for the tree depicted in the below image will be:

alt text

1
2 3
4 -1 5 6
-1 7 -1 -1 -1 -1
-1 -1

Explanation :

Level 1 :
The root node of the tree is 1

Level 2 :
Left child of 1 = 2
Right child of 1 = 3

Level 3 :
Left child of 2 = 4
Right child of 2 = null (-1)
Left child of 3 = 5
Right child of 3 = 6

Level 4 :
Left child of 4 = null (-1)
Right child of 4 = 7
Left child of 5 = null (-1)
Right child of 5 = null (-1)
Left child of 6 = null (-1)
Right child of 6 = null (-1)

Level 5 :
Left child of 7 = null (-1)
Right child of 7 = 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:

1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1
Output Format :
For each test case, print the inorder traversal of the cloned binary tree separated by a single space.
On the next line, the checker will output a ‘1’ if you have cloned the tree successfully; otherwise, it will print ‘0’.

Print the output of each test case in a separate line.
Note :
You don’t need to print anything; It has already been taken care of.
Constraints :
1 <= T <= 100
0 <= N <= 3000
1 <= data <= 10 ^ 5 and data!=-1

Where ‘T’ is the number of test cases, and ‘N’ is the total number of nodes in the binary tree, and “data” is the value of the binary tree node

Time Limit: 1 sec
Sample Input 1 :
2
1 2 3 -1 -1 -1 -1
2 3 1 -1 -1 -1 -1
5 6 7 8 -1 -1 -1 -1 -1 -1
6 8 5 7 -1 -1 -1 -1 -1 -1
Sample Output 1 :
2 1 3
1
8 6 5 7
1
Explanation of Sample Input 1 :
For the first test case, the inorder traversal of the cloned binary tree is  {2, 1, 3}. On the next line, the checker code will print 1 if the tree was successfully cloned.

For the second test case, the inorder traversal of the cloned binary tree is {8, 6, 5, 7}. On the next line, the checker code will print 1 if the tree was cloned successfully.
Sample Input 2:
2
1 7 -1 -1 -1
1 -1 -1 -1 -1
3 4 5 -1 -1 -1 9 -1 -1
5 3 3 -1 -1 -1 4 -1 -1
Sample Output 2:
7 1
1
4 3 5 9
1
Explanation of Sample Input 2:
For the first test case, the inorder traversal of the cloned binary tree is  {1, 7}. On the next line, the checker code will print 1 if the tree was successfully cloned.

For the second test case, the inorder traversal of the cloned binary tree is {8, 6, 5, 7}. On the next line, the checker code will print 1 if the tree was cloned successfully.
Hint

Can you think about using a HashMap to map the cloned nodes to the original tree?

Approaches (2)
HashMap based approach

The idea is to use a HashMap to map the tree nodes to each clone node. We will traverse the binary tree and create a clone tree with the random pointer equal to NULL and map each node of the given tree to its clone node. Now we will again iterate through the tree and add the random pointer of each node by looking up the HashMap. 

 

The steps are as follows:

  1. Let’s define a HashMap to map each node to it’s cloned node, let’s say “clonedNodes”.
  2. Recursively traverse the tree, for each node create a new clone node, let’s say our current node is “curr”, and the cloned node is “clone”.
    1. Copy the value, left pointer, and right pointer of the current node to “clone”.
    2. Insert “curr” into the HashMap and map it to “clone”.
    3. Recur for the left and the right subtrees.
  3. Now recursively traverse the given tree and the cloned tree simultaneously, and set the random pointer of the cloned tree using the values from the HashMap.
Time Complexity

O(N), where N is the total number of nodes in the binary tree.

 

We are doing the traversal of the given tree to map the nodes of the given tree to cloned nodes, and this will take O(N) time. Then we are again traversing the given tree to set the random pointers of the cloned tree, this will again take O(N) time. Also inserting and lookup operations in the HashMap take constant time. Thus, the overall time complexity will be O(N).

Space Complexity

O(N), where N is the total number of nodes in the binary tree.

 

We are mapping each node of the binary tree to it’s cloned node in a HashMap. Hence the size of the HashMap will be ‘N’. Thus, the total space complexity is O(N).

Code Solution
(100% EXP penalty)
Clone a binary tree with random pointers.
Full screen
Console