Reference implementations of heap data structures in Go
$ go get -u github.com/theodesp/go-heaps
Heaps
- Pairing Heap: A pairing heap is a type of heap data structure with relatively simple implementation and excellent practical amortized performance,
package main
import (
"github.com/theodesp/go-heaps"
pairingHeap "github.com/theodesp/go-heaps/pairing"
"fmt"
)
func main() {
heap := pairingHeap.New()
heap.Insert(go_heaps.Integer(4))
heap.Insert(go_heaps.Integer(3))
heap.Insert(go_heaps.Integer(2))
heap.Insert(go_heaps.Integer(5))
fmt.Println(heap.DeleteMin()) // 2
fmt.Println(heap.DeleteMin()) // 3
fmt.Println(heap.DeleteMin()) // 4
fmt.Println(heap.DeleteMin()) // 5
}
Operation | Pairing |
---|---|
FindMin | Θ(1) |
DeleteMin | O(log n) |
Insert | Θ(1) |
Find | O(n) |
Delete | O(n) |
Adjust | O(n) |
Thanks goes to these wonderful people (emoji key):
Miroojin Bakshi 💻 |
---|
This project follows the all-contributors specification. Contributions of any kind welcome!
Copyright © 2017 Theo Despoudis MIT license