Problem: Clone Graph
Explore how to create a deep clone of a connected undirected graph by traversing it with breadth-first search. Understand using a hash map to track cloned nodes and replicate neighbor relationships. Learn to implement this graph cloning efficiently in JavaScript with optimal time and space complexity.
We'll cover the following...
Statement
You are given a reference to a node in a connected, undirected graph. Your task is to return a deep copy (clone) of the entire graph.
Each node in the graph contains:
An integer value (
data)A list of its neighboring nodes (
neighbors)
Examples
Try it yourself!
Implement your solution in the following coding playground.
import {Node} from "./Node.js"function clone(root){// Replace this placeholder return statement with your codereturn root;}export { clone };
Solution
The core idea behind cloning a connected, undirected graph is to traverse the original graph using breadth-first search (BFS) while simultaneously building a copy of each node and replicating the neighbor relationships. We use a hash map (cloneMap) that maps each original node to its corresponding cloned node. This serves two purposes: it tracks which nodes have already been visited (preventing infinite loops in the undirected graph) and provides constant-time access to the cloned counterpart of any original node when wiring up neighbor lists. Starting from the given node, we explore level by level. For every neighbor encountered, we either create a new clone (if unseen) or retrieve the existing clone, then append it to the current cloned node’s neighbors list.
Now, let’s look at the solution steps below:
If the input
nodeisnull, returnnullimmediately, since there is no graph to clone. ...