Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 598 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 598 Bytes

This repo is deprecated, Renamed to PriorityQueue and moved to http://github.com/mailgun/holster

Build Status

minheap

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()