Skip to content

Commit

Permalink
update package name
Browse files Browse the repository at this point in the history
  • Loading branch information
RickoNoNo3 committed Mar 20, 2024
1 parent 3a5ef19 commit a68c29e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Generic Disjoint Sets (Union-Find Sets)
[![Go](https://github.com/RickoNoNo3/ufset/actions/workflows/go.yml/badge.svg?branch=master)](https://github.com/RickoNoNo3/ufset/actions/workflows/go.yml)

Implementation of disjoint set in Go. For the algorithm, see https://en.wikipedia.org/wiki/Disjoint-set_data_structure

Expand Down
2 changes: 1 addition & 1 deletion tree.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package generic_disjoint_set
package ufset

type setNode[K comparable] struct {
Key K
Expand Down
2 changes: 1 addition & 1 deletion tree_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package generic_disjoint_set
package ufset

import (
"fmt"
Expand Down

0 comments on commit a68c29e

Please sign in to comment.