Skip to content
QuizMaker logoQuizMaker
Activity
DSA Course: Interview Patterns and Problem Solving
Module 7: Graphs
Best Time to Buy and Sell Stock: Greedy Pattern
Maximum Subarray: Kadane Pattern
Move Zeroes: Two pointers Pattern
Contains Duplicate: Set Pattern
Valid Anagram: Frequency map Pattern
Longest Substring Without Repeating Characters: Sliding window Pattern
Valid Palindrome: Two pointers Pattern
Longest Palindromic Substring: Expand around center Pattern
Group Anagrams: Hash key Pattern
Binary Search: Classic search Pattern
Search Insert Position: Lower bound Pattern
First Bad Version: Predicate search Pattern
Search in Rotated Sorted Array: Rotated search Pattern
Find Minimum in Rotated Sorted Array: Rotated minimum Pattern
Valid Parentheses: Stack matching Pattern
Min Stack: Auxiliary stack Pattern
Daily Temperatures: Monotonic stack Pattern
Next Greater Element I: Monotonic stack Pattern
Evaluate Reverse Polish Notation: Stack evaluation Pattern
Reverse Linked List: Pointer reversal Pattern
Merge Two Sorted Lists: Dummy node Pattern
Linked List Cycle: Fast and slow pointers Pattern
Middle of the Linked List: Fast and slow pointers Pattern
Remove Nth Node From End: Two pointers Pattern
Binary Tree Traversals: DFS recursion Pattern
Maximum Depth of Binary Tree: Height recursion Pattern
Binary Tree Level Order Traversal: BFS queue Pattern
Validate Binary Search Tree: Range bounds Pattern
Lowest Common Ancestor: Recursive split Pattern
Connected Components: Adjacency DFS Pattern
Number of Islands: Grid DFS Pattern
Flood Fill: Boundary DFS Pattern
Clone Graph: Hash Map DFS Pattern
Course Schedule: Topological Sort Pattern
Union Find Components: Disjoint Set Pattern
Shortest Path in Unweighted Graph: BFS Distance Pattern
Climbing Stairs: Fibonacci DP Pattern
House Robber: Pick or Skip DP Pattern
Coin Change: Minimum Coins DP Pattern
Longest Increasing Subsequence: Binary Search DP Pattern
Longest Common Subsequence: 2D DP Pattern
0/1 Knapsack: Capacity DP Pattern
Longest Consecutive Sequence: Hash Set Pattern
Subarray Sum Equals K: Prefix Sum Hashmap Pattern
First Unique Character: Frequency Map Pattern
Find Duplicates: Frequency Map Pattern
Ransom Note: Character Availability Pattern
Sort Colors: Dutch National Flag Pattern
Next Permutation: Pivot and Suffix Reversal Pattern
Merge Intervals: Sort and Sweep Pattern
Find First and Last Position: Boundary Binary Search Pattern
Search a 2D Matrix: Flattened Binary Search Pattern
Subsets: Pick or Skip Recursion Pattern
Generate Parentheses: Valid State Backtracking Pattern
Combination Sum: Reuse Choice Backtracking Pattern
N-Queens: Constraint Backtracking Pattern
Word Search: Grid Backtracking Pattern
Kth Largest Element: Size-K Min-Heap Pattern
Top K Frequent Elements: Frequency Heap Pattern
Merge K Sorted Lists: Min-Heap Multiway Merge Pattern
Median Finder: Two Heaps Pattern
Task Scheduler: Greedy Max-Heap Pattern
Jump Game: Farthest Reach Greedy Pattern
Gas Station: Greedy Reset Pattern
Non-overlapping Intervals: Earliest End Greedy Pattern
Minimum Arrows to Burst Balloons: Interval End Greedy Pattern
Partition Labels: Last Occurrence Greedy Pattern
Single Number: XOR Cancellation Pattern
Power of Two: n and n-1 Pattern
Number of 1 Bits: Brian Kernighan Pattern
Single Number III: Rightmost Set Bit Pattern
XOR From 1 to N: Modulo Cycle Pattern
Prime Check: Square Root Trial Division Pattern
Sieve of Eratosthenes: Prime Marking Pattern
GCD: Euclidean Remainder Pattern
Binary Exponentiation: Fast Power Pattern
Modular Inverse: Extended Euclid Pattern
Implement Trie: Prefix Tree Pattern
Longest Common Prefix: Single Branch Trie Pattern
LRU Cache: Hash Map Plus Recency List Pattern
Segment Tree: Range Sum Query Pattern
Fenwick Tree: Binary Indexed Prefix Sum Pattern
CONTENTS

Shortest Path in Unweighted Graph: BFS Distance Pattern

Use BFS layers to find the fewest edges between two nodes.

DSA Course: Interview Patterns and Problem Solving
Module 7: Graphs
dsa
graphs
+1
May 29, 2026
23
A

Learning Outcome

After this lesson, you should be able to use BFS levels as distance in an unweighted graph.

Problem Statement

Given n nodes, undirected edges, a source, and a destination, return the shortest number of edges from source to destination.

InputOutputWhy
n = 5, edges = [[0,1],[1,2],[0,3],[3,4]], src = 0, dst = 42The shortest path is 0 to 3 to 4.

Brute Force Approach

Use DFS to enumerate all paths and then choose the shortest. DFS may explore long paths before short paths.

Optimized Approach

Build an adjacency list and run BFS from the source. The first time a node is reached, its distance is shortest.

Exact Pseudocode

build adjacency list
queue = [(source, 0)]
mark source as seen
while queue not empty:
  node, distance = pop front
  if node is destination:
    return distance
  for neighbor in adj[node]:
    if neighbor is unseen:
      mark neighbor as seen
      push (neighbor, distance + 1)
return -1

Reference Code

from collections import deque

class Solution:
    def shortestPath(self, n, edges, src, dst):
        adj = [[] for _ in range(n)]
        for a, b in edges:
            adj[a].append(b)
            adj[b].append(a)

        q = deque([(src, 0)])
        seen = {src}

        while q:
            node, dist = q.popleft()
            if node == dst:
                return dist
            for nei in adj[node]:
                if nei not in seen:
                    seen.add(nei)
                    q.append((nei, dist + 1))
        return -1

Sample Dry Run

StepStateResult
Startqueue = [(0,0)]seen = {0}
Pop 0Add 1 and 3 with distance 1queue = [(1,1),(3,1)]
Pop 3Add 4 with distance 2queue includes destination
Pop 4Destination reachedreturn 2

Complexity

MeasureValueReason
TimeO(n + e)BFS processes each node and edge at most once.
SpaceO(n + e)Adjacency, queue, and seen set take linear space.

Edge Cases

  • If source equals destination, return 0.
  • If destination is unreachable, return -1.
  • This works for unweighted graphs, not weighted shortest path.

Interview Checklist

  • Mark nodes when enqueued, not when popped.
  • Store distance with each node or level by level.
  • Return as soon as destination is popped or first reached.

FAQs

Why does BFS give shortest distance?

BFS explores all nodes at distance d before any node at distance d + 1.

Can DFS solve this?

DFS can find a path, but it does not naturally guarantee the shortest unweighted path.

What is the core pattern?

BFS layer distance.

Share this article

Share on TwitterShare on LinkedInShare on FacebookShare on WhatsAppShare on Email

Test your knowledge

Take a quick quiz based on this chapter.

mediumDSA Course
Shortest Path in Unweighted Graph - BFS Distance Pattern Practice Quiz
5 questions8 min

0 comments

Please login to comment.
No comments yet.
Lesson 7 of 7 in Module 7: Graphs
Previous in Module 7: Graphs
Union Find Components: Disjoint Set Pattern
Next section: Module 8: Dynamic Programming
Climbing Stairs: Fibonacci DP Pattern
Module 8: Dynamic Programming
Back to DSA Course: Interview Patterns and Problem Solving
Back to moduleCategories