disjoint-sets: three union-find implementations

Build Status Crates.io License: MIT License: Apache 2.0

This library provides three disjoint set data structures:

All three perform rank-balanced path compression à la Tarjan, using interior mutability.

Usage

It’s on crates.io, so it can be used by adding disjoint-sets to the dependencies in your project’s Cargo.toml:

toml [dependencies] disjoint-sets = "*"