DSA Tracker

Medium

Clone Graph

A medium Graph problem included in Love Babbar 450, Striver A2Z. Below: the roles whose interviews prioritise this topic, and how to practise it.

Topic
Graph
Sheets
2
Core for
11 roles
Platform
LeetCode

The problem

Given a reference to a node in a connected undirected graph, return a deep copy (clone) of the entire graph. Each node contains a value and a list of its neighbors.

Example 1

Input
Node 1 with neighbors [Node2, Node4], Node2 with neighbors [Node1, Node3], Node3 with neighbors [Node2, Node4], Node4 with neighbors [Node1, Node3]
Output
A new graph with the same structure where no node references the original graph's nodes.

Example 2

Input
Node 1 with neighbor [Node2], Node2 with neighbors [Node1, Node3], Node3 with neighbor [Node2]
Output
A cloned graph with 3 nodes preserving all connections.

Constraints

  • Number of nodes in [0, 100]
  • 1 <= Node.val <= 100
  • Node.val is unique

How to think about it

Updated 2026-09-09

Copying a cyclic graph fails if you try to build trees recursively without memory. The moment you clone a node, register the pair in a lookup map before cloning its neighbors. Whenever an edge points back to an already visited vertex, wire to the existing clone instead of recursing into an infinite loop.

Approaches, worst first

  1. DFS with clone dictionary

    time O(V + E) · space O(V)

    Pass the current node into a recursive function that checks a hash map of original-to-clone references. If absent, instantiate the clone immediately, insert it into the map, and fill its neighbor list by recursively cloning each neighbor.

  2. BFS with queue and clone dictionaryWrite this one

    time O(V + E) · space O(V)

    Seed a queue with the starting node and pre-populate the dictionary with its clone. Dequeue vertices, creating and recording new neighbor clones on first sight while always appending the cloned neighbor to the current clone's adjacency list, avoiding call stack depth.

Where people lose marks · 3
  • A null graph with 0 nodes must return null immediately; dereferencing `node.val` on an empty graph causes a null pointer crash.
  • Appending the clone to the lookup map AFTER recursing on its neighbors causes infinite mutual recursion across undirected edges.
  • Attempting to index clones by array index when node values might not start strictly from 0 or 1.

The theory behind it

Graph — the ground this problem stands on. All Graph problems

What Graph is

A graph is a network of individual points, called vertices or nodes, connected by lines called edges. Think of a subway transit map, an electrical circuit, or a web of social friends. Unlike a tree, a graph has no designated top node and no parent-child hierarchy. Connections can run one-way or both ways, and paths can loop back on themselves to form closed cycles.

When to reach for it

Reach for graph algorithms when inputs describe relationships, networks, flights between cities, course prerequisites, or clone networks. Signals include finding the shortest route across unweighted connections, ordering tasks that depend on earlier tasks, counting isolated clusters, or checking whether a path contains an infinite loop. Whenever problems present pairs of related entities and ask for reachability, distances, or dependencies, graph representations apply.

How the pattern works

First convert edge lists into an adjacency list, mapping each node to an array of its neighbors. Choose your exploration strategy based on the goal: use a queue and breadth-first search to find the shortest path in unweighted networks, or use recursion and depth-first search to explore full paths and detect cycles. Because graphs can have loops, always track visited nodes in a set or boolean array. Add nodes to the visited set at the moment they enter the queue so they are never visited twice.

What each operation costs

OperationTime
visit all nodes and edges via searchO(v + e)
topological sort using in-degree countsO(v + e)
shortest path using dijkstra with a min-heapO((v + e) log v)
What usually goes wrong with Graph
  • Adding a node to the visited set when popping from the queue instead of when pushing, which lets neighboring nodes enqueue duplicate entries and wastes memory.
  • Failing to check for cycles in directed graphs when finding prerequisite orders, causing topological sort routines to hang or return incomplete lists.
  • Assuming an input graph is fully connected and scanning from only a single starting node, missing disconnected islands and isolated components.

Which roles need this problem

Graph is a core topic for these 11 roles — if you're targeting one of them, this problem is early in your path, not optional.

Secondary for 6 more roles, including Performance Engineer, Search Engineer, Information Retrieval Engineer.

Track this in your role's order

Pick your target role and all 370 problems — including this one — resequence to what that interview actually asks. Free.

Start free

More Graph problems

Problem set and role mapping as of .