Limited Time Offer:Up to 20% off Hello Interview Premium
Up to 20% off Hello Interview Premium 🎉
Hello Interview
Learn Code
Introduction
Overview
Container With Most Water
Two Sum (Sorted Array)
3-Sum
Triangle Numbers
Move Zeroes
Sort Colors
Trapping Rain Water
Overview
Maximum Sum of Subarrays of Size K
Max Points You Can Obtain From Cards
Max Sum of Distinct Subarrays Length k
Overview
Longest Substring Without Repeating Characters
Longest Repeating Character Replacement
Overview
Can Attend Meetings
Insert Interval
Non-Overlapping Intervals
Merge Intervals
Employee Free Time
Overview
Valid Parentheses
Decode String
Longest Valid Parentheses
Monotonic Stack
Daily Temperatures
Largest Rectangle in Histogram
Overview
Linked List Cycle
Palindrome Linked List
Remove Nth Node From End of List
Reorder List
Swap Nodes in Pairs
Overview
Apple Harvest (Koko Eating Bananas)
Search in Rotated Sorted Array
Split Array Largest Sum
Kth Smallest Element in a Sorted Matrix
Minimum Shipping Capacity
Overview
Kth Largest Element in an Array
K Closest Points to Origin
Find K Closest Elements
Merge K Sorted Lists
Median from Data Stream
Introduction
Fundamentals
Return Values
Maximum Depth of Binary Tree
Path Sum
Passing Values Down and Helper Functions
Validate Binary Search Tree
Calculate Tilt
Diameter of a Binary Tree
Path Sum II
Longest Univalue Path
Graphs Overview
Adjacency List
Copy Graph
Graph Valid Tree
Matrices
Flood Fill
Number of Islands
Surrounded Regions
Pacific Atlantic Water Flow
Introduction
Overview
Level Order Sum
Rightmost Node
Zigzag Level Order
Maximum Width of Binary Tree
Graphs Overview
Minimum Knight Moves
Rotting Oranges
01-Matrix
Bus Routes
Overview
Word Search
Solution Space Trees
Subsets
Generate Parentheses
Combination Sum
Palindrome Partitioning
N-Queens
Overview
Course Schedule
Course Schedule II
Shortest Path Algorithms
Network Delay Time
Cheapest Flights Within K Stops
Path With Minimum Effort
Find City with Fewest Reachable
Fundamentals
Solving a Question with Dynamic Programming
Counting Bits
Decode Ways
Unique Paths
Maximal Square
Longest Increasing Subsequence
Word Break
Maximum Profit in Job Scheduling
Paint House
Paint House II
Minimum Window Subsequence
Overview
Best Time to Buy and Sell Stock
Gas Station
Jump Game
Jump Game II
Partition Labels
Overview
Implement Trie Methods
Prefix Matching
Overview
Count Vowels in Substrings
Subarray Sum Equals K
Spiral Matrix
Rotate Image
Set Matrix Zeroes
Vote For New Content
Pricing
Sign in / Sign up
Search
⌘K
Pricing

Tutor

Depth-First Search

Copy Graph

easy

max (21)341224132;341225102;21365487109
Count: 10
abcValid triangle requires:a + b > c AND a + c > b AND b + c > a(every pair must sum to more than the third side)3511SOURCE23211SOURCE23UNREACHABLE$100$100$100$5000SRC123DST$100$100$1000SRC123DST01233141Threshold: 4Answer: 32 reachable01234231118Threshold: 2Answer: 01 reachable1102233321432263321
DESCRIPTION

Given a reference to a variable node which is part of an undirected, connected graph, write a function to return a copy of the graph as an adjacency list in dictionary form. The keys of the adjacency list are the values of the nodes, and the values are the neighbors of the nodes.

node is an instance of the following class, where neighbors is a list of references to other nodes in the graph (also of type IntGraphNode):

class IntGraphNode:
    def __init__(self, value = 0, neighbors = None):
    self.value = value
    self.neighbors = neighbors if neighbors is not None else []

Example 1:

Input:

node = IntGraphNode(1, [IntGraphNode(2), IntGraphNode(3)])
321

Output:

>>> copy_graph(node)
{1: [2, 3], 2: [1], 3: [1]}

Example 2: Input:

n1 = IntGraphNode(1)
n2 = IntGraphNode(2)
n3 = IntGraphNode(3)
n4 = IntGraphNode(4)

n1.neighbors = [n2, n4]
n2.neighbors = [n1, n3]
n3.neighbors = [n2, n4]
n4.neighbors = [n1, n3]
4321

Output:

>>> copy_graph(n1)
{1: [2, 4], 2: [1, 3], 3: [2, 4], 4: [1, 3]}

Explanation

This solution uses depth-first search to traverse each node in the original graph. We can define a recursive helper function dfs that takes in an input node to help us perform the DFS traversal.
At each node, we:
  1. Add the value of the node as a key in the adjacency list, and a list of its neighbor's values as the value in the dictionary.
  2. Recursively call the dfs function on each neighbor of the node.
The adjacency list also helps us keep track of visited nodes. If we call dfs on a node that has already been added to the adjacency list, this means we have already visited the node, so we can return right away before making any more recursive calls.
Solution
Python
Language
# class IntGraphNode:
# value: int
# neighbors: List[IntGraphNode]
def copy_graph(node):
adj_list = {}
def dfs(node):
if node.value in adj_list:
return
adj_list[node.value] = [n.value for n in node.neighbors]
for neighbor in node.neighbors:
dfs(neighbor)
if node:
dfs(node)
return adj_list
We can now take a closer look at the solution by visualizing each step as it traverses the graph below:
3210

Initialization

The first step is to initialize adj_list as an empty dictionary. We will return this dictionary at the end, after the depth-first search traversal is complete. We then define the recursive helper function dfs that takes a node as input, and make the initial call to dfs with the input node.
Visualization
Python
Language
# class IntGraphNode:
# value: int
# neighbors: List[IntGraphNode]
def copy_graph(node):
adj_list = {}
def dfs(node):
if node.value in adj_list:
return
adj_list[node.value] = [n.value for n in node.neighbors]
for neighbor in node.neighbors:
dfs(neighbor)
if node:
dfs(node)
return adj_list
3210

copy graph

0 / 2

Defining both adj_list and the helper dfs function inside the main function ensures us that:
  • each call to the recursive function can access adj_list directly
  • the scope of adj_list is limited to the main function, which means that other parts of the code cannot modify it.

Depth-First Search

When the dfs function is called with a node, it first checks if the node is already present in the adj_list dictionary. If it isn't, it adds the node to the dictionary. The key is the value of the node, and the value is a list of the values of each of the node's neighbors.
Visualization
Python
Language
# class IntGraphNode:
# value: int
# neighbors: List[IntGraphNode]
def copy_graph(node):
adj_list = {}
def dfs(node):
if node.value in adj_list:
return
adj_list[node.value] = [n.value for n in node.neighbors]
for neighbor in node.neighbors:
dfs(neighbor)
if node:
dfs(node)
return adj_list
def dfs(node):
if node.value in adj_list:
return
adj_list[node.value] = [n.value for n in node.neighbors]
for neighbor in node.neighbors:
dfs(neighbor)
3210adj_list{}

recursive call

0 / 1

Then, it recursively calls dfs on each neighbor of the original node.
Visualization
Python
Language
# class IntGraphNode:
# value: int
# neighbors: List[IntGraphNode]
def copy_graph(node):
adj_list = {}
def dfs(node):
if node.value in adj_list:
return
adj_list[node.value] = [n.value for n in node.neighbors]
for neighbor in node.neighbors:
dfs(neighbor)
if node:
dfs(node)
return adj_list
def dfs(node):
if node.value in adj_list:
return
adj_list[node.value] = [n.value for n in node.neighbors]
for neighbor in node.neighbors:
dfs(neighbor)
3210adj_list{0: [1]}

add to adj_list

0 / 5

Recursive call to `dfs`
When dfs is called on a node that is already present in adj_list, it returns immediately without making any more recursive calls, which helps us avoid infinite loops in the graph. After returning, the function continues to the next neighbor of the current node.
Visualization
Python
Language
# class IntGraphNode:
# value: int
# neighbors: List[IntGraphNode]
def copy_graph(node):
adj_list = {}
def dfs(node):
if node.value in adj_list:
return
adj_list[node.value] = [n.value for n in node.neighbors]
for neighbor in node.neighbors:
dfs(neighbor)
if node:
dfs(node)
return adj_list
def dfs(node):
if node.value in adj_list:
return
adj_list[node.value] = [n.value for n in node.neighbors]
for neighbor in node.neighbors:
dfs(neighbor)
def dfs(node):
if node.value in adj_list:
return
adj_list[node.value] = [n.value for n in node.neighbors]
for neighbor in node.neighbors:
dfs(neighbor)
def dfs(node):
if node.value in adj_list:
return
adj_list[node.value] = [n.value for n in node.neighbors]
for neighbor in node.neighbors:
dfs(neighbor)
3210adj_list{0: [1], 1: [0,2]}

recursive call

0 / 2

Returning from a previously visited node.
This process continues until all nodes in the original graph have been visited and added to the adj_list dictionary.

Animated Solution

Visualization
Python
Language
Try these examples:
# class IntGraphNode:
# value: int
# neighbors: List[IntGraphNode]
def copy_graph(node):
adj_list = {}
def dfs(node):
if node.value in adj_list:
return
adj_list[node.value] = [n.value for n in node.neighbors]
for neighbor in node.neighbors:
dfs(neighbor)
if node:
dfs(node)
return adj_list
3210

copy graph

0 / 26

Test Your Knowledge

Login to take the complexity quiz and track your progress

Complexity Analysis

Time Complexity: O(N + M) where N is the number of nodes and M is the number of edges in the graph for the depth-first search traversal.

Space Complexity: O(N + M) where N is the number of nodes and M is the number of edges in the graph. The space complexity is due to the adjacency list that stores the graph structure: each of the N nodes is stored once as keys, and each of the M edges is stored as part of the values in the dictionary.

Mark as read

Next: Graph Valid Tree

Your account is free and you can post anonymously if you choose.

Unlock Premium Coding Content

Interactive algorithm visualizations
Guided Practice
Recent interview questions
Learn More
Reading Progress

On This Page

Explanation

Initialization

Depth-First Search

Animated Solution

Questions
Meta SWE Interview QuestionsAmazon SWE Interview QuestionsGoogle SWE Interview QuestionsOpenAI SWE Interview QuestionsEngineering Manager (EM) Interview Questions
Learn
Learn System DesignLearn DSALearn BehavioralLearn ML System DesignLearn Low Level DesignGuided Practice
Links
FAQPricingGift PremiumHello Interview Premium
Legal
Terms and ConditionsPrivacy PolicySecurity
Contact
About UsProduct Support

7511 Greenwood Ave North Unit #4238 Seattle WA 98103


© 2026 Optick Labs Inc. All rights reserved.

Login to track your progress