changed strings union find > generic union find
Go / build (push) Successful in 30s

This commit is contained in:
Acid
2026-07-19 02:14:50 -04:00
parent 8c73d121e4
commit 8461c26d42
5 changed files with 142 additions and 83 deletions
+69
View File
@@ -0,0 +1,69 @@
package sets
import "cmp"
// GenericUnionFind{
// unionFind *UnionFind
// index map[T]int
// names []T
// }
// A union-find over any cmp.Ordered type, backed by an integer UnionFind.
type GenericUnionFind[T cmp.Ordered] struct {
unionFind *UnionFind
index map[T]int
names []T
}
// NewGenericUnion() -> creates a disjoint set from (generic comparable)
// the constructor will deduplicate and return a GenericUnionFind
func NewGenericUnion[T cmp.Ordered](params []T) *GenericUnionFind[T] {
genericUnion := &GenericUnionFind[T]{
index: make(map[T]int, len(params)),
}
for _, name := range params {
if _, seen := genericUnion.index[name]; !seen {
genericUnion.index[name] = len(genericUnion.names)
genericUnion.names = append(genericUnion.names, name)
}
}
genericUnion.unionFind = NewUnionFind(len(genericUnion.names))
return genericUnion
}
// Union() -> creates an Union of 2 values, returns true if success
func (n *GenericUnionFind[T]) Union(a, b T) bool {
paramA, ok1 := n.index[a]
paramB, ok2 := n.index[b]
if !ok1 || !ok2 {
return false
}
return n.unionFind.Union(paramA, paramB)
}
// IsUnion() -> returns true if the parameters have the same root
func (n *GenericUnionFind[T]) IsUnion(a T, b T) bool {
paramA, ok1 := n.index[a]
paramB, ok2 := n.index[b]
if !ok1 || !ok2 {
return false
}
return n.unionFind.IsUnion(paramA, paramB)
}
// Rep() -> returns the representative of group, and false if the root is unknown.
func (n *GenericUnionFind[T]) Rep(a T) (T, bool) {
ia, ok := n.index[a]
if !ok {
var zero T
return zero, false
}
return n.names[n.unionFind.Find(ia)], true
}
// Disjointed() -> returns the count of disjointed sets remaining
func (n *GenericUnionFind[T]) Disjointed() int {
return n.unionFind.Disjointed()
}
-65
View File
@@ -1,65 +0,0 @@
package sets
// NamedUnionFind{
// unionFind *UnionFind
// index map[string]int
// names []string
// }
type NamedUnionFind struct {
unionFind *UnionFind
index map[string]int
names []string
}
// NewStringsUnion() -> creates a disjoint set from a slice of strings,
// the constructor will deduplicate and return a NamedUnionFind
func NewStringsUnion(params []string) *NamedUnionFind {
namedUnion := &NamedUnionFind{
index: make(map[string]int, len(params)),
}
for _, name := range params {
if _, seen := namedUnion.index[name]; !seen {
namedUnion.index[name] = len(namedUnion.names)
namedUnion.names = append(namedUnion.names, name)
}
}
namedUnion.unionFind = NewUnionFind(len(namedUnion.names))
return namedUnion
}
// Union() -> creates an Union of 2 values, returns true if success
func (n *NamedUnionFind) Union(a, b string) bool {
paramA, ok1 := n.index[a]
paramB, ok2 := n.index[b]
if !ok1 || !ok2 {
return false
}
return n.unionFind.Union(paramA, paramB)
}
// IsUnion() -> returns true if the parameters have the same root
func (n *NamedUnionFind) IsUnion(a, b string) bool {
paramA, ok1 := n.index[a]
paramB, ok2 := n.index[b]
if !ok1 || !ok2 {
return false
}
return n.unionFind.IsUnion(paramA, paramB)
}
// Rep() -> returns the representative name of group, and false if the name is unknown.
func (n *NamedUnionFind) Rep(a string) (string, bool) {
ia, ok := n.index[a]
if !ok {
return "", false
}
return n.names[n.unionFind.Find(ia)], true
}
// Disjointed() -> returns the count of disjointed sets remaining
func (n *NamedUnionFind) Disjointed() int {
return n.unionFind.Disjointed()
}