Crate union_find

source ·
Expand description

Struct and methods for union-find operation.

Structs

  • Union-Find implementation with quick find operation.
  • Union-Find implementation with quick union operation.
  • Operates the union with using the rank of the sets as weight.
  • Operates the union with using the ramk and the size of the sets as weight.
  • Operates the union with using the size of the sets as weight.
  • Operates the union with using the size and the rank of the sets as weight.

Enums

Traits

  • The value that can be contained with Union.
  • APIs for Union-Find operation.