version: 1.10

package heap

import "container/heap"

Overview

Package heap provides heap operations for any type that implements heap.Interface. A heap is a tree with the property that each node is the minimum-valued node in its subtree.

The minimum element in the tree is the root, at index 0.

A heap is a common way to implement a priority queue. To build a priority queue, implement the Heap interface with the (negative) priority as the ordering for the Less method, so Push adds items while Pop removes the highest-priority item from the queue. The Examples include such an implementation; the file example_pq_test.go has the complete source.

Example:

  1. // This example demonstrates an integer heap built using the heap interface.
  2. package heap_test
  3. import (
  4. "container/heap"
  5. "fmt"
  6. )
  7. // An IntHeap is a min-heap of ints.
  8. type IntHeap []int
  9. func (h IntHeap) Len() int { return len(h) }
  10. func (h IntHeap) Less(i, j int) bool { return h[i] < h[j] }
  11. func (h IntHeap) Swap(i, j int) { h[i], h[j] = h[j], h[i] }
  12. func (h *IntHeap) Push(x interface{}) {
  13. // Push and Pop use pointer receivers because they modify the slice's length,
  14. // not just its contents.
  15. *h = append(*h, x.(int))
  16. }
  17. func (h *IntHeap) Pop() interface{} {
  18. old := *h
  19. n := len(old)
  20. x := old[n-1]
  21. *h = old[0 : n-1]
  22. return x
  23. }
  24. // This example inserts several ints into an IntHeap, checks the minimum,
  25. // and removes them in order of priority.
  26. func Example_intHeap() {
  27. h := &IntHeap{2, 1, 5}
  28. heap.Init(h)
  29. heap.Push(h, 3)
  30. fmt.Printf("minimum: %d\n", (*h)[0])
  31. for h.Len() > 0 {
  32. fmt.Printf("%d ", heap.Pop(h))
  33. }
  34. // Output:
  35. // minimum: 1
  36. // 1 2 3 5
  37. }

Example:

  1. // This example demonstrates a priority queue built using the heap interface.
  2. package heap_test
  3. import (
  4. "container/heap"
  5. "fmt"
  6. )
  7. // An Item is something we manage in a priority queue.
  8. type Item struct {
  9. value string // The value of the item; arbitrary.
  10. priority int // The priority of the item in the queue.
  11. // The index is needed by update and is maintained by the heap.Interface methods.
  12. index int // The index of the item in the heap.
  13. }
  14. // A PriorityQueue implements heap.Interface and holds Items.
  15. type PriorityQueue []*Item
  16. func (pq PriorityQueue) Len() int { return len(pq) }
  17. func (pq PriorityQueue) Less(i, j int) bool {
  18. // We want Pop to give us the highest, not lowest, priority so we use greater than here.
  19. return pq[i].priority > pq[j].priority
  20. }
  21. func (pq PriorityQueue) Swap(i, j int) {
  22. pq[i], pq[j] = pq[j], pq[i]
  23. pq[i].index = i
  24. pq[j].index = j
  25. }
  26. func (pq *PriorityQueue) Push(x interface{}) {
  27. n := len(*pq)
  28. item := x.(*Item)
  29. item.index = n
  30. *pq = append(*pq, item)
  31. }
  32. func (pq *PriorityQueue) Pop() interface{} {
  33. old := *pq
  34. n := len(old)
  35. item := old[n-1]
  36. item.index = -1 // for safety
  37. *pq = old[0 : n-1]
  38. return item
  39. }
  40. // update modifies the priority and value of an Item in the queue.
  41. func (pq *PriorityQueue) update(item *Item, value string, priority int) {
  42. item.value = value
  43. item.priority = priority
  44. heap.Fix(pq, item.index)
  45. }
  46. // This example creates a PriorityQueue with some items, adds and manipulates an item,
  47. // and then removes the items in priority order.
  48. func Example_priorityQueue() {
  49. // Some items and their priorities.
  50. items := map[string]int{
  51. "banana": 3, "apple": 2, "pear": 4,
  52. }
  53. // Create a priority queue, put the items in it, and
  54. // establish the priority queue (heap) invariants.
  55. pq := make(PriorityQueue, len(items))
  56. i := 0
  57. for value, priority := range items {
  58. pq[i] = &Item{
  59. value: value,
  60. priority: priority,
  61. index: i,
  62. }
  63. i++
  64. }
  65. heap.Init(&pq)
  66. // Insert a new item and then modify its priority.
  67. item := &Item{
  68. value: "orange",
  69. priority: 1,
  70. }
  71. heap.Push(&pq, item)
  72. pq.update(item, item.value, 5)
  73. // Take the items out; they arrive in decreasing priority order.
  74. for pq.Len() > 0 {
  75. item := heap.Pop(&pq).(*Item)
  76. fmt.Printf("%.2d:%s ", item.priority, item.value)
  77. }
  78. // Output:
  79. // 05:orange 04:pear 03:banana 02:apple
  80. }

Index

Examples

Package files

heap.go

func Fix

  1. func Fix(h Interface, i int)

Fix re-establishes the heap ordering after the element at index i has changed its value. Changing the value of the element at index i and then calling Fix is equivalent to, but less expensive than, calling Remove(h, i) followed by a Push of the new value. The complexity is O(log(n)) where n = h.Len().

func Init

  1. func Init(h Interface)

A heap must be initialized before any of the heap operations can be used. Init is idempotent with respect to the heap invariants and may be called whenever the heap invariants may have been invalidated. Its complexity is O(n) where n = h.Len().

func Pop

  1. func Pop(h Interface) interface{}

Pop removes the minimum element (according to Less) from the heap and returns it. The complexity is O(log(n)) where n = h.Len(). It is equivalent to Remove(h, 0).

func Push

  1. func Push(h Interface, x interface{})

Push pushes the element x onto the heap. The complexity is O(log(n)) where n = h.Len().

func Remove

  1. func Remove(h Interface, i int) interface{}

Remove removes the element at index i from the heap. The complexity is O(log(n)) where n = h.Len().

type Interface

  1. type Interface interface {
  2. sort.Interface
  3. Push(x interface{}) // add x as element Len()
  4. Pop() interface{} // remove and return element Len() - 1.
  5. }

Any type that implements heap.Interface may be used as a min-heap with the following invariants (established after Init has been called or if the data is empty or sorted):

  1. !h.Less(j, i) for 0 <= i < h.Len() and 2*i+1 <= j <= 2*i+2 and j < h.Len()

Note that Push and Pop in this interface are for package heap’s implementation to call. To add and remove things from the heap, use heap.Push and heap.Pop.