aoc2024/day-09/internal/two/heap.go

32 lines
451 B
Go
Raw Normal View History

package two
type minHeap []*block
func (h minHeap) Len() int {
return len(h)
}
func (h minHeap) Less(i, j int) bool {
return h[i].id < h[j].id
}
func (h minHeap) Swap(i, j int) {
h[i], h[j] = h[j], h[i]
}
func (h *minHeap) Push(x interface{}) {
*h = append(*h, x.(*block))
}
func (h *minHeap) Pop() interface{} {
old := *h
n := len(old)
x := old[n-1]
*h = old[:n-1]
return x
}
func (h *minHeap) IsEmpty() bool {
return h.Len() == 0
}