8.5. heapq — Heap queue algorithm (2024)

documentation.HELP! Python 3.7 Documentation

Python 3.7

previous page next page

Navigation

  • index
  • modules |
  • next |
  • previous |
  • 8.5. heapq — Heap queue algorithm (1)
  • Python »
  • 3.7.0b1 Documentation »
  • The Python Standard Library »
  • 8. Data Types »

Source code: Lib/heapq.py

This module provides an implementation of the heap queue algorithm, also knownas the priority queue algorithm.

Heaps are binary trees for which every parent node has a value less than orequal to any of its children. This implementation uses arrays for whichheap[k] <= heap[2*k+1] and heap[k] <= heap[2*k+2] for all k, countingelements from zero. For the sake of comparison, non-existing elements areconsidered to be infinite. The interesting property of a heap is that itssmallest element is always the root, heap[0].

The API below differs from textbook heap algorithms in two aspects: (a) We usezero-based indexing. This makes the relationship between the index for a nodeand the indexes for its children slightly less obvious, but is more suitablesince Python uses zero-based indexing. (b) Our pop method returns the smallestitem, not the largest (called a “min heap” in textbooks; a “max heap” is morecommon in texts because of its suitability for in-place sorting).

These two make it possible to view the heap as a regular Python list withoutsurprises: heap[0] is the smallest item, and heap.sort() maintains theheap invariant!

To create a heap, use a list initialized to [], or you can transform apopulated list into a heap via function heapify().

The following functions are provided:

heapq.heappush(heap, item)

Push the value item onto the heap, maintaining the heap invariant.

heapq.heappop(heap)

Pop and return the smallest item from the heap, maintaining the heapinvariant. If the heap is empty, IndexError is raised. To access thesmallest item without popping it, use heap[0].

heapq.heappushpop(heap, item)

Push item on the heap, then pop and return the smallest item from theheap. The combined action runs more efficiently than heappush()followed by a separate call to heappop().

heapq.heapify(x)

Transform list x into a heap, in-place, in linear time.

heapq.heapreplace(heap, item)

Pop and return the smallest item from the heap, and also push the new item.The heap size doesn’t change. If the heap is empty, IndexError is raised.

This one step operation is more efficient than a heappop() followed byheappush() and can be more appropriate when using a fixed-size heap.The pop/push combination always returns an element from the heap and replacesit with item.

The value returned may be larger than the item added. If that isn’tdesired, consider using heappushpop() instead. Its push/popcombination returns the smaller of the two values, leaving the larger valueon the heap.

The module also offers three general purpose functions based on heaps.

heapq.merge(*iterables, key=None, reverse=False)

Merge multiple sorted inputs into a single sorted output (for example, mergetimestamped entries from multiple log files). Returns an iteratorover the sorted values.

Similar to sorted(itertools.chain(*iterables)) but returns an iterable, doesnot pull the data into memory all at once, and assumes that each of the inputstreams is already sorted (smallest to largest).

Has two optional arguments which must be specified as keyword arguments.

key specifies a key function of one argument that is used toextract a comparison key from each input element. The default value isNone (compare the elements directly).

reverse is a boolean value. If set to True, then the input elementsare merged as if each comparison were reversed. To achieve behavior similarto sorted(itertools.chain(*iterables), reverse=True), all iterables mustbe sorted from largest to smallest.

Changed in version 3.5: Added the optional key and reverse parameters.

heapq.nlargest(n, iterable, key=None)

Return a list with the n largest elements from the dataset defined byiterable. key, if provided, specifies a function of one argument that isused to extract a comparison key from each element in the iterable:key=str.lower Equivalent to: sorted(iterable, key=key,reverse=True)[:n]

heapq.nsmallest(n, iterable, key=None)

Return a list with the n smallest elements from the dataset defined byiterable. key, if provided, specifies a function of one argument that isused to extract a comparison key from each element in the iterable:key=str.lower Equivalent to: sorted(iterable, key=key)[:n]

The latter two functions perform best for smaller values of n. For largervalues, it is more efficient to use the sorted() function. Also, whenn==1, it is more efficient to use the built-in min() and max()functions. If repeated usage of these functions is required, consider turningthe iterable into an actual heap.

8.5.1. Basic Examples

A heapsort can be implemented bypushing all values onto a heap and then popping off the smallest values one at atime:

>>> def heapsort(iterable):...  h = []...  for value in iterable:...  heappush(h, value)...  return [heappop(h) for i in range(len(h))]...>>> heapsort([1, 3, 5, 7, 9, 2, 4, 6, 8, 0])[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

This is similar to sorted(iterable), but unlike sorted(), thisimplementation is not stable.

Heap elements can be tuples. This is useful for assigning comparison values(such as task priorities) alongside the main record being tracked:

>>> h = []>>> heappush(h, (5, 'write code'))>>> heappush(h, (7, 'release product'))>>> heappush(h, (1, 'write spec'))>>> heappush(h, (3, 'create tests'))>>> heappop(h)(1, 'write spec')

8.5.2. Priority Queue Implementation Notes

A priority queue is common usefor a heap, and it presents several implementation challenges:

  • Sort stability: how do you get two tasks with equal priorities to be returnedin the order they were originally added?
  • Tuple comparison breaks for (priority, task) pairs if the priorities are equaland the tasks do not have a default comparison order.
  • If the priority of a task changes, how do you move it to a new position inthe heap?
  • Or if a pending task needs to be deleted, how do you find it and remove itfrom the queue?

A solution to the first two challenges is to store entries as 3-element listincluding the priority, an entry count, and the task. The entry count serves asa tie-breaker so that two tasks with the same priority are returned in the orderthey were added. And since no two entry counts are the same, the tuplecomparison will never attempt to directly compare two tasks.

Another solution to the problem of non-comparable tasks is to create a wrapperclass that ignores the task item and only compares the priority field:

from dataclasses import dataclass, fieldfrom typing import Any@dataclass(order=True)class PrioritizedItem: priority: int item: Any=field(compare=False)

The remaining challenges revolve around finding a pending task and makingchanges to its priority or removing it entirely. Finding a task can be donewith a dictionary pointing to an entry in the queue.

Removing the entry or changing its priority is more difficult because it wouldbreak the heap structure invariants. So, a possible solution is to mark theentry as removed and add a new entry with the revised priority:

pq = [] # list of entries arranged in a heapentry_finder = {} # mapping of tasks to entriesREMOVED = '<removed-task>' # placeholder for a removed taskcounter = itertools.count() # unique sequence countdef add_task(task, priority=0): 'Add a new task or update the priority of an existing task' if task in entry_finder: remove_task(task) count = next(counter) entry = [priority, count, task] entry_finder[task] = entry heappush(pq, entry)def remove_task(task): 'Mark an existing task as REMOVED. Raise KeyError if not found.' entry = entry_finder.pop(task) entry[-1] = REMOVEDdef pop_task(): 'Remove and return the lowest priority task. Raise KeyError if empty.' while pq: priority, count, task = heappop(pq) if task is not REMOVED: del entry_finder[task] return task raise KeyError('pop from an empty priority queue')

8.5.3. Theory

Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for allk, counting elements from 0. For the sake of comparison, non-existingelements are considered to be infinite. The interesting property of a heap isthat a[0] is always its smallest element.

The strange invariant above is meant to be an efficient memory representationfor a tournament. The numbers below are k, not a[k]:

 0 1 2 3 4 5 6 7 8 9 10 11 12 13 1415 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

In the tree above, each cell k is topping 2*k+1 and 2*k+2. In a usualbinary tournament we see in sports, each cell is the winner over the two cellsit tops, and we can trace the winner down the tree to see all opponents s/hehad. However, in many computer applications of such tournaments, we do not needto trace the history of a winner. To be more memory efficient, when a winner ispromoted, we try to replace it by something else at a lower level, and the rulebecomes that a cell and the two cells it tops contain three different items, butthe top cell “wins” over the two topped cells.

If this heap invariant is protected at all time, index 0 is clearly the overallwinner. The simplest algorithmic way to remove it and find the “next” winner isto move some loser (let’s say cell 30 in the diagram above) into the 0 position,and then percolate this new 0 down the tree, exchanging values, until theinvariant is re-established. This is clearly logarithmic on the total number ofitems in the tree. By iterating over all items, you get an O(n log n) sort.

A nice feature of this sort is that you can efficiently insert new items whilethe sort is going on, provided that the inserted items are not “better” than thelast 0’th element you extracted. This is especially useful in simulationcontexts, where the tree holds all incoming events, and the “win” conditionmeans the smallest scheduled time. When an event schedules other events forexecution, they are scheduled into the future, so they can easily go into theheap. So, a heap is a good structure for implementing schedulers (this is whatI used for my MIDI sequencer :-).

Various structures for implementing schedulers have been extensively studied,and heaps are good for this, as they are reasonably speedy, the speed is almostconstant, and the worst case is not much different than the average case.However, there are other representations which are more efficient overall, yetthe worst cases might be terrible.

Heaps are also very useful in big disk sorts. You most probably all know that abig sort implies producing “runs” (which are pre-sorted sequences, whose size isusually related to the amount of CPU memory), followed by a merging passes forthese runs, which merging is often very cleverly organised [1]. It is veryimportant that the initial sort produces the longest runs possible. Tournamentsare a good way to achieve that. If, using all the memory available to hold atournament, you replace and percolate items that happen to fit the current run,you’ll produce runs which are twice the size of the memory for random input, andmuch better for input fuzzily ordered.

Moreover, if you output the 0’th item on disk and get an input which may not fitin the current tournament (because the value “wins” over the last output value),it cannot fit in the heap, so the size of the heap decreases. The freed memorycould be cleverly reused immediately for progressively building a second heap,which grows at exactly the same rate the first heap is melting. When the firstheap completely vanishes, you switch heaps and start a new run. Clever andquite effective!

In a word, heaps are useful memory structures to know. I use them in a fewapplications, and I think it is good to keep a ‘heap’ module around. :-)

Footnotes

[1]The disk balancing algorithms which are current, nowadays, are more annoyingthan clever, and this is a consequence of the seeking capabilities of the disks.On devices which cannot seek, like big tape drives, the story was quitedifferent, and one had to be very clever to ensure (far in advance) that eachtape movement will be the most effective possible (that is, will bestparticipate at “progressing” the merge). Some tapes were even able to readbackwards, and this was also used to avoid the rewinding time. Believe me, realgood tape sorts were quite spectacular to watch! From all times, sorting hasalways been a Great Art! :-)

Navigation

  • index
  • modules |
  • next |
  • previous |
  • 8.5. heapq — Heap queue algorithm (2)
  • Python »
  • 3.7.0b1 Documentation »
  • The Python Standard Library »
  • 8. Data Types »

© Copyright 2001-2018, Python Software Foundation.
The Python Software Foundation is a non-profit corporation.Please donate.
Last updated on Jan 31, 2018.Found a bug?
Created using Sphinx 1.6.6.

previous page start next page

8.5. heapq — Heap queue algorithm (2024)
Top Articles
Latest Posts
Article information

Author: Greg Kuvalis

Last Updated:

Views: 6600

Rating: 4.4 / 5 (55 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Greg Kuvalis

Birthday: 1996-12-20

Address: 53157 Trantow Inlet, Townemouth, FL 92564-0267

Phone: +68218650356656

Job: IT Representative

Hobby: Knitting, Amateur radio, Skiing, Running, Mountain biking, Slacklining, Electronics

Introduction: My name is Greg Kuvalis, I am a witty, spotless, beautiful, charming, delightful, thankful, beautiful person who loves writing and wants to share my knowledge and understanding with you.