Union-Find (Disjoint Set) Implementation in Python
Key Takeaways
- โPython's readability makes it ideal for learning Union-Find (Disjoint Set).
- โThe implementation achieves O(ฮฑ(n)) average time complexity.
- โPython's built-in data structures complement Union-Find (Disjoint Set) implementations.
- โType hints improve code clarity and catch bugs early.
Union-Find (Disjoint Set) in Python: Overview
Python Implementation
class UnionFind:
def __init__(self, n: int):
self.parent = list(range(n))
self.rank = [0] * n
self.count = n # number of components
def find(self, x: int) -> int:
if self.parent[x] != x:
self.parent[x] = self.find(self.parent[x]) # path compression
return self.parent[x]
def union(self, x: int, y: int) -> bool:
rx, ry = self.find(x), self.find(y)
if rx == ry: return False
if self.rank[rx] < self.rank[ry]: rx, ry = ry, rx
self.parent[ry] = rx
if self.rank[rx] == self.rank[ry]: self.rank[rx] += 1
self.count -= 1
return True
def connected(self, x: int, y: int) -> bool:
return self.find(x) == self.find(y)
uf = UnionFind(10)
uf.union(0, 1); uf.union(1, 2); uf.union(3, 4)
print(uf.connected(0, 2)) # True
print(uf.connected(0, 3)) # False
print(uf.count) # 7Step-by-Step Explanation
Did You Get the Big O Right? NexusBro Will Tell You in Seconds.
Paste your algorithm. Get complexity analysis, edge cases, and optimizations.
Test My AlgorithmComplexity Analysis
Testing Your Implementation
Python-Specific Optimizations
Unlock Unlimited QA Audits for $15.99/mo
Free: 5 audits/day. Pro $15.99/mo: 50/day + 250 pages. Pro Max $99/mo: unlimited audits, 10K pages, API access.
See PlansFrequently Asked Questions
Is Python good for implementing Union-Find (Disjoint Set)?
Yes, Python is excellent for learning and implementing Union-Find (Disjoint Set). Its readable syntax makes the algorithm logic clear, and its standard library provides useful supporting data structures. While Python is slower than compiled languages, the asymptotic complexity is identical, making it perfect for understanding and interviews.
How does Python's built-in sort compare to Union-Find (Disjoint Set)?
Python's built-in sort uses TimSort, a hybrid merge-sort and insertion-sort algorithm with O(n log n) worst case. Depending on Union-Find (Disjoint Set)'s complexity class, it may be faster or slower for specific inputs. Built-in sort is highly optimized in C, so it will outperform pure Python implementations.
Should I use type hints in my Union-Find (Disjoint Set) Python code?
Yes, type hints improve code readability, enable better IDE support, and help catch type-related bugs early. They are especially valuable in algorithm implementations where the types of inputs and outputs should be clear to readers.
Can I use Union-Find (Disjoint Set) in Python for large datasets?
For large datasets, consider the algorithm's complexity. If Union-Find (Disjoint Set) has O(ฮฑ(n)) worst case, it may be slow for very large inputs. Python's NumPy and Pandas libraries offer optimized C-based alternatives for data-heavy operations.
What Python version should I use for Union-Find (Disjoint Set)?
Use Python 3.10 or later for the best experience. Recent versions offer structural pattern matching, improved type hints, and performance improvements that benefit algorithm implementations.
Related Articles
Unlock Unlimited QA Audits for $15.99/mo
Free: 5 audits/day. Pro $15.99/mo: 50/day + 250 pages. Pro Max $99/mo: unlimited audits, 10K pages, API access.
See PlansNoizz helps you discover and compare the best new products and tools. Try it free โ
Is your site built to last?
Run a free QA audit and get your Site Health Score in seconds.
Check Your Site FreeNo signup required