Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/TheAlgorithms/Go
/ Item
Struct
Item
graph/dijkstra.go:12–15 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
10
import
"github.com/TheAlgorithms/Go/sort"
11
12
type
Item
struct
{
13
node int
14
dist int
15
}
16
17
func
(a Item) More(b any) bool {
18
// reverse direction for minheap
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected