mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-10 06:40:47 +00:00
32 lines
440 B
Go
32 lines
440 B
Go
|
package two
|
||
|
|
||
|
type minPath []move
|
||
|
|
||
|
func newHeap() *minPath {
|
||
|
return &minPath{}
|
||
|
}
|
||
|
|
||
|
func (h minPath) Len() int {
|
||
|
return len(h)
|
||
|
}
|
||
|
|
||
|
func (h minPath) Less(i, j int) bool {
|
||
|
return h[i].cost < h[j].cost
|
||
|
}
|
||
|
|
||
|
func (h minPath) Swap(i, j int) {
|
||
|
h[i], h[j] = h[j], h[i]
|
||
|
}
|
||
|
|
||
|
func (h *minPath) Push(x interface{}) {
|
||
|
*h = append(*h, x.(move))
|
||
|
}
|
||
|
|
||
|
func (h *minPath) Pop() interface{} {
|
||
|
old := *h
|
||
|
n := len(old)
|
||
|
x := old[n-1]
|
||
|
*h = old[:n-1]
|
||
|
return x
|
||
|
}
|