0%

Clone Binary Tree With Random Pointer

Question

A binary tree is given such that each node contains an additional random pointer which could point to any node in the tree or null.

Return a deep copy of the tree.

The tree is represented in the same input/output way as normal binary trees where each node is represented as a pair of [val, random_index] where:

val: an integer representing Node.val
random_index: the index of the node (in the input) where the random pointer points to, or null if it does not point to any node.
You will be given the tree in class Node and you should return the cloned tree in class NodeCopy. NodeCopy class is just a clone of Node class with the same attributes and constructors.

Solution

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
@param: Node
@return: NodeCopy
Algorithm: hashMap同133, 138
*/
Map<Node, NodeCopy> map;
public NodeCopy copyRandomBinaryTree(Node root) {
map = new HashMap<>();
dfs1(root);
dfs2(root);
NodeCopy res = map.get(root);
return res;
}

private void dfs1(Node node) {
if (node == null) return;

map.putIfAbsent(node, new NodeCopy(node.val, null, null, null));
dfs1(node.left);
dfs1(node.right);
}

private void dfs2(Node node) {
if (node == null) return;

map.get(node).left = map.get(node.left);
map.get(node).right = map.get(node.right);
map.get(node).random = map.get(node.random);
dfs2(node.left);
dfs2(node.right);
}