Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add go generics #6

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/amwolff/gorder

go 1.16
go 1.20

require github.com/davecgh/go-spew v1.1.1
34 changes: 17 additions & 17 deletions gorder.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"regexp"
)

func TopologicalSort(digraph map[interface{}][]interface{}, algorithm string) (solution []interface{}, err error) {
func TopologicalSort[T comparable, V []T](digraph map[T]V, algorithm string) (solution V, err error) {
kahnRgxp, err := regexp.Compile(`[Kk]ahn\z`)
if err != nil {
return nil, err
Expand All @@ -29,24 +29,24 @@ func TopologicalSort(digraph map[interface{}][]interface{}, algorithm string) (s
return solution, nil
}

func kahn(digraph map[interface{}][]interface{}) ([]interface{}, error) {
indegrees := make(map[interface{}]int)
for u := range digraph {
if digraph[u] != nil {
for _, v := range digraph[u] {
indegrees[v]++
}
func kahn[T comparable, V []T](digraph map[T]V) (V, error) {
indegrees := make(map[T]int)

// loop through all diagraph and add increase indegrees of values
for _, iter := range digraph {
for _, v := range iter {
indegrees[v]++
}
}

var queue []interface{}
var queue V
for u := range digraph {
if _, ok := indegrees[u]; !ok {
queue = append(queue, u)
}
}

var order []interface{}
var order V
for len(queue) > 0 {
u := queue[len(queue)-1]
queue = queue[:(len(queue) - 1)]
Expand All @@ -67,16 +67,16 @@ func kahn(digraph map[interface{}][]interface{}) ([]interface{}, error) {
return order, nil
}

func dfsBased(digraph map[interface{}][]interface{}) ([]interface{}, error) {
func dfsBased[T comparable, V []T](digraph map[T]V) (V, error) {
var (
acyclic = true
order []interface{}
permanentMark = make(map[interface{}]bool)
temporaryMark = make(map[interface{}]bool)
visit func(interface{})
order V
permanentMark = make(map[T]bool)
temporaryMark = make(map[T]bool)
visit func(T)
)

visit = func(u interface{}) {
visit = func(u T) {
if temporaryMark[u] {
acyclic = false
} else if !(temporaryMark[u] || permanentMark[u]) {
Expand All @@ -89,7 +89,7 @@ func dfsBased(digraph map[interface{}][]interface{}) ([]interface{}, error) {
}
delete(temporaryMark, u)
permanentMark[u] = true
order = append([]interface{}{u}, order...)
order = append(V{u}, order...)
}
}

Expand Down
18 changes: 9 additions & 9 deletions gorder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
)

func TestTopologicalSort(t *testing.T) {
digraph := map[interface{}][]interface{}{
1: []interface{}{2, 4},
2: []interface{}{3, 5},
3: []interface{}{4, 5},
digraph := map[int][]int{
1: {2, 4},
2: {3, 5},
3: {4, 5},
}

want := []int{1, 2, 3, 5, 4}
Expand Down Expand Up @@ -40,11 +40,11 @@ func TestTopologicalSort(t *testing.T) {
}
}

graphWithCycles := map[interface{}][]interface{}{
1: []interface{}{2, 4},
2: []interface{}{3, 5},
3: []interface{}{4, 5},
4: []interface{}{2},
graphWithCycles := map[int][]int{
1: {2, 4},
2: {3, 5},
3: {4, 5},
4: {2},
}
_, err = TopologicalSort(graphWithCycles, "kahn")
if err == nil {
Expand Down