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

Make mutable graph visitation order deterministic, add go.mod/sum #14

Open
wants to merge 2 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
8 changes: 8 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module github.com/jhickner/graph

go 1.19

require (
github.com/yourbasic/graph v0.0.0-20210606180040-8ecfec1c2869
golang.org/x/exp v0.0.0-20230510235704-dd950f8aeaea
)
4 changes: 4 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
github.com/yourbasic/graph v0.0.0-20210606180040-8ecfec1c2869 h1:7v7L5lsfw4w8iqBBXETukHo4IPltmD+mWoLRYUmeGN8=
github.com/yourbasic/graph v0.0.0-20210606180040-8ecfec1c2869/go.mod h1:Rfzr+sqaDreiCaoQbFCu3sTXxeFq/9kXRuyOoSlGQHE=
golang.org/x/exp v0.0.0-20230510235704-dd950f8aeaea h1:vLCWI/yYrdEHyN2JzIzPO3aaQJHQdp89IZBA/+azVC4=
golang.org/x/exp v0.0.0-20230510235704-dd950f8aeaea/go.mod h1:V1LtkGg67GoY2N1AnLN78QLrzxkLyJw7RJb1gzOOz9w=
13 changes: 9 additions & 4 deletions mutable.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
package graph

import (
"sort"
"strconv"

"golang.org/x/exp/maps"
)

const initialMapSize = 4
Expand All @@ -11,7 +14,6 @@ const initialMapSize = 4
// The implementation uses hash maps to associate each vertex in the graph with
// its adjacent vertices. This gives constant time performance for
// all basic operations.
//
type Mutable struct {
// The map edges[v] contains the mapping {w:c} if there is an edge
// from v to w, and c is the cost assigned to this edge.
Expand Down Expand Up @@ -85,12 +87,15 @@ func (g *Mutable) Order() int {
// If do returns true, Visit returns immediately,
// skipping any remaining neighbors, and returns true.
//
// The iteration order is not specified and is not guaranteed
// to be the same every time.
// The iteration order is deterministic.
// It is safe to delete, but not to add, edges adjacent to v
// during a call to this method.
func (g *Mutable) Visit(v int, do func(w int, c int64) bool) bool {
for w, c := range g.edges[v] {
keys := maps.Keys(g.edges[v])
sort.Ints(keys)

for _, w := range keys {
c := g.edges[v][w]
if do(w, c) {
return true
}
Expand Down