Skip to main content
Back to problems
#1485
Medium Algorithms

Clone binary tree with random pointer

Hash Table Tree Depth-First Search Breadth-First Search Binary Tree
80.9% acceptance
Mar 31, 2026
432
94
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

C++
Time O(1)
Space O(1)
LeetCode
solution.cpp
/**
 * Definition for a Node.
 * struct Node {
 *     int val;
 *     Node *left;
 *     Node *right;
 *     Node *random;
 *     Node() : val(0), left(nullptr), right(nullptr), random(nullptr) {}
 *     Node(int x) : val(x), left(nullptr), right(nullptr), random(nullptr) {}
 *     Node(int x, Node *left, Node *right, Node *random) : val(x), left(left), right(right), random(random) {}
 * };
 */

class Solution {
public:
  unordered_map<Node*, NodeCopy*> mp;

  NodeCopy* copyRandomBinaryTree(Node* root) {
    if (!root) return nullptr;
    if (mp.count(root)) return mp[root];
    NodeCopy* copy = new NodeCopy(root->val);
    mp[root] = copy;
    copy->left = copyRandomBinaryTree(root->left);
    copy->right = copyRandomBinaryTree(root->right);
    copy->random = copyRandomBinaryTree(root->random);
    return copy;
  }
};