Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 358 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 358 Bytes

DisjoinSet

DisjointSet is a C++ library that provides a disjoint-set data structure implementation.

It uses the rank heuristic and path compression to offer near-constant-time operations.

Features:

  • easy to use
  • easy to install (header-only and no external dependency)
  • very simple
  • fast