Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 275 Bytes

README.md

File metadata and controls

9 lines (5 loc) · 275 Bytes

UnionFind

Java Implementation of the Union-Find datastructure for efficiently representing and merging set partitions.

Implements the union/find operations, managing a compact int array to track the set. Find is performed recursively.

JUnit tests are provided.