pqueue icon indicating copy to clipboard operation
pqueue copied to clipboard

Go implementation of priority queues.

Results 1 pqueue issues
Sort by recently updated
recently updated
newest added

I think benchmarks against a slice-based implementation using `container/heap` would be interesting. My implementation of Hollow Heaps ( https://github.com/dgryski/go-hollow ) for example is much slower due to all the pointer...