MCPcopy
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

10import "github.com/TheAlgorithms/Go/sort"
11
12type Item struct {
13 node int
14 dist int
15}
16
17func (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