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

Union Find Components: Disjoint Set Pattern

Merge connected nodes and count how many groups remain.

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 parent and size arrays to merge graph components efficiently.

Problem Statement

Given n nodes and undirected edges, return the number of connected components using Union Find.

InputOutputWhy
n = 5, edges = [[0,1],[1,2],[3,4]]2Unioning the edges creates groups {0,1,2} and {3,4}.

Brute Force Approach

After every edge, run DFS again to recompute groups. This repeats traversal work after each merge.

Optimized Approach

Initialize each node as its own parent. Union endpoints of every edge and decrement the component count only when two different roots merge.

Exact Pseudocode

parent[i] = i
size[i] = 1
components = n
for edge (a, b):
  if union(a, b) merges two roots:
    components -= 1
return components

find(x):
  compress parent pointers until root is found

Reference Code

class Solution:
    def countComponents(self, n, edges):
        parent = list(range(n))
        size = [1] * n

        def find(x):
            while x != parent[x]:
                parent[x] = parent[parent[x]]
                x = parent[x]
            return x

        def union(a, b):
            ra, rb = find(a), find(b)
            if ra == rb:
                return False
            if size[ra] < size[rb]:
                ra, rb = rb, ra
            parent[rb] = ra
            size[ra] += size[rb]
            return True

        components = n
        for a, b in edges:
            if union(a, b):
                components -= 1
        return components

Sample Dry Run

StepStateResult
StartEvery node is its own parentcomponents = 5
Union 0 and 1Different roots mergecomponents = 4
Union 1 and 22 joins root of 0,1components = 3
Union 3 and 4Different roots mergecomponents = 2

Complexity

MeasureValueReason
TimeO((n + e) alpha(n))Path compression and union by size make each operation almost constant.
SpaceO(n)Parent and size arrays store one entry per node.

Edge Cases

  • Repeated edges should not reduce the count twice.
  • Self-loops should not reduce the count.
  • With no edges, every node is a component.

Interview Checklist

  • Only decrement count when roots differ.
  • Compress paths in find.
  • Attach smaller set under larger set.

FAQs

What does alpha(n) mean?

It is the inverse Ackermann factor, which is effectively constant for interview-sized inputs.

When is Union Find better than DFS?

It is especially useful when connectivity is built through many merge operations.

What is the core pattern?

Disjoint set union.

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.

hardDSA Course
Union Find Components - Disjoint Set Pattern Practice Quiz
5 questions8 min

0 comments

Please login to comment.
No comments yet.
Lesson 6 of 7 in Module 7: Graphs
Previous in Module 7: Graphs
Course Schedule: Topological Sort Pattern
Next in Module 7: Graphs
Shortest Path in Unweighted Graph: BFS Distance Pattern
Back to DSA Course: Interview Patterns and Problem Solving
Back to moduleCategories