This repo is deprecated, Renamed to PriorityQueue and moved to http://github.com/mailgun/holster
Slightly more user-friendly heap on top of containers/heap.
import "github.com/mailgun/minheap"
func toEl(i int) interface{} {
return &i
}
func fromEl(i interface{}) int {
return *(i.(*int))
}
mh := minheap.NewMinHeap()
el := &minheap.Element{
Value: toEl(1),
Priority: 5,
}
mh.PushEl(el)
mh.PeekEl()
mh.Len()
mh.PopEl()