blob: 3fe6b4646a1a3a5c7e31ef584c8510d12adee93b [file] [log] [blame]
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +00001"""Heap queue algorithm (a.k.a. priority queue).
2
3Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for
4all k, counting elements from 0. For the sake of comparison,
5non-existing elements are considered to be infinite. The interesting
6property of a heap is that a[0] is always its smallest element.
7
8Usage:
9
10heap = [] # creates an empty heap
11heappush(heap, item) # pushes a new item on the heap
12item = heappop(heap) # pops the smallest item from the heap
13item = heap[0] # smallest item on the heap without popping it
14heapify(x) # transforms list into a heap, in-place, in linear time
15item = heapreplace(heap, item) # pops and returns smallest item, and adds
16 # new item; the heap size is unchanged
17
18Our API differs from textbook heap algorithms as follows:
19
20- We use 0-based indexing. This makes the relationship between the
21 index for a node and the indexes for its children slightly less
22 obvious, but is more suitable since Python uses 0-based indexing.
23
24- Our heappop() method returns the smallest item, not the largest.
25
26These two make it possible to view the heap as a regular Python list
27without surprises: heap[0] is the smallest item, and heap.sort()
28maintains the heap invariant!
29"""
30
Raymond Hettinger33ecffb2004-06-10 05:03:17 +000031# Original code by Kevin O'Connor, augmented by Tim Peters and Raymond Hettinger
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +000032
33__about__ = """Heap queues
34
Mark Dickinsonb4a17a82010-07-04 19:23:49 +000035[explanation by François Pinard]
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +000036
37Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for
38all k, counting elements from 0. For the sake of comparison,
39non-existing elements are considered to be infinite. The interesting
40property of a heap is that a[0] is always its smallest element.
41
42The strange invariant above is meant to be an efficient memory
43representation for a tournament. The numbers below are `k', not a[k]:
44
45 0
46
47 1 2
48
49 3 4 5 6
50
51 7 8 9 10 11 12 13 14
52
53 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
54
55
56In the tree above, each cell `k' is topping `2*k+1' and `2*k+2'. In
57an usual binary tournament we see in sports, each cell is the winner
58over the two cells it tops, and we can trace the winner down the tree
59to see all opponents s/he had. However, in many computer applications
60of such tournaments, we do not need to trace the history of a winner.
61To be more memory efficient, when a winner is promoted, we try to
62replace it by something else at a lower level, and the rule becomes
63that a cell and the two cells it tops contain three different items,
64but the top cell "wins" over the two topped cells.
65
66If this heap invariant is protected at all time, index 0 is clearly
67the overall winner. The simplest algorithmic way to remove it and
68find the "next" winner is to move some loser (let's say cell 30 in the
69diagram above) into the 0 position, and then percolate this new 0 down
70the tree, exchanging values, until the invariant is re-established.
71This is clearly logarithmic on the total number of items in the tree.
72By iterating over all items, you get an O(n ln n) sort.
73
74A nice feature of this sort is that you can efficiently insert new
75items while the sort is going on, provided that the inserted items are
76not "better" than the last 0'th element you extracted. This is
77especially useful in simulation contexts, where the tree holds all
78incoming events, and the "win" condition means the smallest scheduled
79time. When an event schedule other events for execution, they are
80scheduled into the future, so they can easily go into the heap. So, a
81heap is a good structure for implementing schedulers (this is what I
82used for my MIDI sequencer :-).
83
84Various structures for implementing schedulers have been extensively
85studied, and heaps are good for this, as they are reasonably speedy,
86the speed is almost constant, and the worst case is not much different
87than the average case. However, there are other representations which
88are more efficient overall, yet the worst cases might be terrible.
89
90Heaps are also very useful in big disk sorts. You most probably all
91know that a big sort implies producing "runs" (which are pre-sorted
92sequences, which size is usually related to the amount of CPU memory),
93followed by a merging passes for these runs, which merging is often
94very cleverly organised[1]. It is very important that the initial
95sort produces the longest runs possible. Tournaments are a good way
96to that. If, using all the memory available to hold a tournament, you
97replace and percolate items that happen to fit the current run, you'll
98produce runs which are twice the size of the memory for random input,
99and much better for input fuzzily ordered.
100
101Moreover, if you output the 0'th item on disk and get an input which
102may not fit in the current tournament (because the value "wins" over
103the last output value), it cannot fit in the heap, so the size of the
104heap decreases. The freed memory could be cleverly reused immediately
105for progressively building a second heap, which grows at exactly the
106same rate the first heap is melting. When the first heap completely
107vanishes, you switch heaps and start a new run. Clever and quite
108effective!
109
110In a word, heaps are useful memory structures to know. I use them in
111a few applications, and I think it is good to keep a `heap' module
112around. :-)
113
114--------------------
115[1] The disk balancing algorithms which are current, nowadays, are
116more annoying than clever, and this is a consequence of the seeking
117capabilities of the disks. On devices which cannot seek, like big
118tape drives, the story was quite different, and one had to be very
119clever to ensure (far in advance) that each tape movement will be the
120most effective possible (that is, will best participate at
121"progressing" the merge). Some tapes were even able to read
122backwards, and this was also used to avoid the rewinding time.
123Believe me, real good tape sorts were quite spectacular to watch!
124From all times, sorting has always been a Great Art! :-)
125"""
126
Thomas Wouterscf297e42007-02-23 15:07:44 +0000127__all__ = ['heappush', 'heappop', 'heapify', 'heapreplace', 'merge',
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000128 'nlargest', 'nsmallest', 'heappushpop']
Raymond Hettinger33ecffb2004-06-10 05:03:17 +0000129
Benjamin Peterson18e95122009-01-18 22:46:33 +0000130from itertools import islice, repeat, count, tee, chain
Raymond Hettingerb25aa362004-06-12 08:33:36 +0000131import bisect
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000132
133def heappush(heap, item):
134 """Push item onto heap, maintaining the heap invariant."""
135 heap.append(item)
136 _siftdown(heap, 0, len(heap)-1)
137
138def heappop(heap):
139 """Pop the smallest item off the heap, maintaining the heap invariant."""
140 lastelt = heap.pop() # raises appropriate IndexError if heap is empty
141 if heap:
142 returnitem = heap[0]
143 heap[0] = lastelt
144 _siftup(heap, 0)
145 else:
146 returnitem = lastelt
147 return returnitem
148
149def heapreplace(heap, item):
150 """Pop and return the current smallest value, and add the new item.
151
152 This is more efficient than heappop() followed by heappush(), and can be
153 more appropriate when using a fixed-size heap. Note that the value
154 returned may be larger than item! That constrains reasonable uses of
Raymond Hettinger8158e842004-09-06 07:04:09 +0000155 this routine unless written as part of a conditional replacement:
Raymond Hettinger28224f82004-06-20 09:07:53 +0000156
Raymond Hettinger8158e842004-09-06 07:04:09 +0000157 if item > heap[0]:
158 item = heapreplace(heap, item)
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000159 """
160 returnitem = heap[0] # raises appropriate IndexError if heap is empty
161 heap[0] = item
162 _siftup(heap, 0)
163 return returnitem
164
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000165def heappushpop(heap, item):
166 """Fast version of a heappush followed by a heappop."""
Georg Brandlf78e02b2008-06-10 17:40:04 +0000167 if heap and heap[0] < item:
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000168 item, heap[0] = heap[0], item
169 _siftup(heap, 0)
170 return item
171
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000172def heapify(x):
173 """Transform list into a heap, in-place, in O(len(heap)) time."""
174 n = len(x)
175 # Transform bottom-up. The largest index there's any point to looking at
176 # is the largest with a child index in-range, so must have 2*i + 1 < n,
177 # or i < (n-1)/2. If n is even = 2*j, this is (2*j-1)/2 = j-1/2 so
178 # j-1 is the largest, which is n//2 - 1. If n is odd = 2*j+1, this is
179 # (2*j+1-1)/2 = j so j-1 is the largest, and that's again n//2-1.
Guido van Rossum805365e2007-05-07 22:24:25 +0000180 for i in reversed(range(n//2)):
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000181 _siftup(x, i)
182
Raymond Hettingere1defa42004-11-29 05:54:48 +0000183def nlargest(n, iterable):
Raymond Hettinger33ecffb2004-06-10 05:03:17 +0000184 """Find the n largest elements in a dataset.
185
186 Equivalent to: sorted(iterable, reverse=True)[:n]
187 """
188 it = iter(iterable)
189 result = list(islice(it, n))
190 if not result:
191 return result
192 heapify(result)
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000193 _heappushpop = heappushpop
Raymond Hettinger33ecffb2004-06-10 05:03:17 +0000194 for elem in it:
Benjamin Peterson5c6d7872009-02-06 02:40:07 +0000195 _heappushpop(result, elem)
Raymond Hettinger33ecffb2004-06-10 05:03:17 +0000196 result.sort(reverse=True)
197 return result
198
Raymond Hettingere1defa42004-11-29 05:54:48 +0000199def nsmallest(n, iterable):
Raymond Hettinger33ecffb2004-06-10 05:03:17 +0000200 """Find the n smallest elements in a dataset.
201
202 Equivalent to: sorted(iterable)[:n]
203 """
Raymond Hettingerb25aa362004-06-12 08:33:36 +0000204 if hasattr(iterable, '__len__') and n * 10 <= len(iterable):
205 # For smaller values of n, the bisect method is faster than a minheap.
206 # It is also memory efficient, consuming only n elements of space.
207 it = iter(iterable)
208 result = sorted(islice(it, 0, n))
209 if not result:
210 return result
211 insort = bisect.insort
212 pop = result.pop
213 los = result[-1] # los --> Largest of the nsmallest
214 for elem in it:
Raymond Hettinger8a9c4d92011-04-13 11:49:57 -0700215 if elem < los:
216 insort(result, elem)
217 pop()
218 los = result[-1]
Raymond Hettingerb25aa362004-06-12 08:33:36 +0000219 return result
220 # An alternative approach manifests the whole iterable in memory but
221 # saves comparisons by heapifying all at once. Also, saves time
222 # over bisect.insort() which has O(n) data movement time for every
223 # insertion. Finding the n smallest of an m length iterable requires
224 # O(m) + O(n log m) comparisons.
Raymond Hettinger33ecffb2004-06-10 05:03:17 +0000225 h = list(iterable)
226 heapify(h)
Guido van Rossumc1f779c2007-07-03 08:25:58 +0000227 return list(map(heappop, repeat(h, min(n, len(h)))))
Raymond Hettinger33ecffb2004-06-10 05:03:17 +0000228
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000229# 'heap' is a heap at all indices >= startpos, except possibly for pos. pos
230# is the index of a leaf with a possibly out-of-order value. Restore the
231# heap invariant.
232def _siftdown(heap, startpos, pos):
233 newitem = heap[pos]
234 # Follow the path to the root, moving parents down until finding a place
235 # newitem fits.
236 while pos > startpos:
237 parentpos = (pos - 1) >> 1
238 parent = heap[parentpos]
Georg Brandlf78e02b2008-06-10 17:40:04 +0000239 if newitem < parent:
240 heap[pos] = parent
241 pos = parentpos
242 continue
243 break
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000244 heap[pos] = newitem
245
246# The child indices of heap index pos are already heaps, and we want to make
247# a heap at index pos too. We do this by bubbling the smaller child of
248# pos up (and so on with that child's children, etc) until hitting a leaf,
249# then using _siftdown to move the oddball originally at index pos into place.
250#
251# We *could* break out of the loop as soon as we find a pos where newitem <=
252# both its children, but turns out that's not a good idea, and despite that
253# many books write the algorithm that way. During a heap pop, the last array
254# element is sifted in, and that tends to be large, so that comparing it
255# against values starting from the root usually doesn't pay (= usually doesn't
256# get us out of the loop early). See Knuth, Volume 3, where this is
257# explained and quantified in an exercise.
258#
259# Cutting the # of comparisons is important, since these routines have no
260# way to extract "the priority" from an array element, so that intelligence
Mark Dickinsona56c4672009-01-27 18:17:45 +0000261# is likely to be hiding in custom comparison methods, or in array elements
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000262# storing (priority, record) tuples. Comparisons are thus potentially
263# expensive.
264#
265# On random arrays of length 1000, making this change cut the number of
266# comparisons made by heapify() a little, and those made by exhaustive
267# heappop() a lot, in accord with theory. Here are typical results from 3
268# runs (3 just to demonstrate how small the variance is):
269#
270# Compares needed by heapify Compares needed by 1000 heappops
271# -------------------------- --------------------------------
272# 1837 cut to 1663 14996 cut to 8680
273# 1855 cut to 1659 14966 cut to 8678
274# 1847 cut to 1660 15024 cut to 8703
275#
276# Building the heap by using heappush() 1000 times instead required
277# 2198, 2148, and 2219 compares: heapify() is more efficient, when
278# you can use it.
279#
280# The total compares needed by list.sort() on the same lists were 8627,
281# 8627, and 8632 (this should be compared to the sum of heapify() and
282# heappop() compares): list.sort() is (unsurprisingly!) more efficient
283# for sorting.
284
285def _siftup(heap, pos):
286 endpos = len(heap)
287 startpos = pos
288 newitem = heap[pos]
289 # Bubble up the smaller child until hitting a leaf.
290 childpos = 2*pos + 1 # leftmost child position
291 while childpos < endpos:
292 # Set childpos to index of smaller child.
293 rightpos = childpos + 1
Georg Brandlf78e02b2008-06-10 17:40:04 +0000294 if rightpos < endpos and not heap[childpos] < heap[rightpos]:
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000295 childpos = rightpos
296 # Move the smaller child up.
297 heap[pos] = heap[childpos]
298 pos = childpos
299 childpos = 2*pos + 1
300 # The leaf at pos is empty now. Put newitem there, and bubble it up
301 # to its final resting place (by sifting its parents down).
302 heap[pos] = newitem
303 _siftdown(heap, startpos, pos)
304
305# If available, use C implementation
306try:
Raymond Hettinger0dd737b2009-03-29 19:30:50 +0000307 from _heapq import *
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000308except ImportError:
309 pass
310
Thomas Wouterscf297e42007-02-23 15:07:44 +0000311def merge(*iterables):
312 '''Merge multiple sorted inputs into a single sorted output.
313
Guido van Rossumd8faa362007-04-27 19:54:29 +0000314 Similar to sorted(itertools.chain(*iterables)) but returns a generator,
Thomas Wouterscf297e42007-02-23 15:07:44 +0000315 does not pull the data into memory all at once, and assumes that each of
316 the input streams is already sorted (smallest to largest).
317
318 >>> list(merge([1,3,5,7], [0,2,4,8], [5,10,15,20], [], [25]))
319 [0, 1, 2, 3, 4, 5, 5, 7, 8, 10, 15, 20, 25]
320
321 '''
322 _heappop, _heapreplace, _StopIteration = heappop, heapreplace, StopIteration
323
324 h = []
325 h_append = h.append
326 for itnum, it in enumerate(map(iter, iterables)):
327 try:
Georg Brandla18af4e2007-04-21 15:47:16 +0000328 next = it.__next__
Thomas Wouterscf297e42007-02-23 15:07:44 +0000329 h_append([next(), itnum, next])
330 except _StopIteration:
331 pass
332 heapify(h)
333
334 while 1:
335 try:
336 while 1:
337 v, itnum, next = s = h[0] # raises IndexError when h is empty
338 yield v
339 s[0] = next() # raises StopIteration when exhausted
340 _heapreplace(h, s) # restore heap condition
341 except _StopIteration:
342 _heappop(h) # remove empty iterator
343 except IndexError:
344 return
345
Raymond Hettinger4901a1f2004-12-02 08:59:14 +0000346# Extend the implementations of nsmallest and nlargest to use a key= argument
347_nsmallest = nsmallest
348def nsmallest(n, iterable, key=None):
349 """Find the n smallest elements in a dataset.
350
351 Equivalent to: sorted(iterable, key=key)[:n]
352 """
Benjamin Peterson18e95122009-01-18 22:46:33 +0000353 # Short-cut for n==1 is to use min() when len(iterable)>0
354 if n == 1:
355 it = iter(iterable)
356 head = list(islice(it, 1))
357 if not head:
358 return []
359 if key is None:
360 return [min(chain(head, it))]
361 return [min(chain(head, it), key=key)]
362
363 # When n>=size, it's faster to use sort()
364 try:
365 size = len(iterable)
366 except (TypeError, AttributeError):
367 pass
368 else:
369 if n >= size:
370 return sorted(iterable, key=key)[:n]
371
372 # When key is none, use simpler decoration
Georg Brandl3a9b0622009-01-03 22:07:57 +0000373 if key is None:
374 it = zip(iterable, count()) # decorate
375 result = _nsmallest(n, it)
Raymond Hettingerba86fa92009-02-21 23:20:57 +0000376 return [r[0] for r in result] # undecorate
Benjamin Peterson18e95122009-01-18 22:46:33 +0000377
378 # General case, slowest method
Raymond Hettinger4901a1f2004-12-02 08:59:14 +0000379 in1, in2 = tee(iterable)
Georg Brandl3a9b0622009-01-03 22:07:57 +0000380 it = zip(map(key, in1), count(), in2) # decorate
Raymond Hettinger4901a1f2004-12-02 08:59:14 +0000381 result = _nsmallest(n, it)
Raymond Hettingerba86fa92009-02-21 23:20:57 +0000382 return [r[2] for r in result] # undecorate
Raymond Hettinger4901a1f2004-12-02 08:59:14 +0000383
384_nlargest = nlargest
385def nlargest(n, iterable, key=None):
386 """Find the n largest elements in a dataset.
387
388 Equivalent to: sorted(iterable, key=key, reverse=True)[:n]
389 """
Benjamin Peterson18e95122009-01-18 22:46:33 +0000390
391 # Short-cut for n==1 is to use max() when len(iterable)>0
392 if n == 1:
393 it = iter(iterable)
394 head = list(islice(it, 1))
395 if not head:
396 return []
397 if key is None:
398 return [max(chain(head, it))]
399 return [max(chain(head, it), key=key)]
400
401 # When n>=size, it's faster to use sort()
402 try:
403 size = len(iterable)
404 except (TypeError, AttributeError):
405 pass
406 else:
407 if n >= size:
408 return sorted(iterable, key=key, reverse=True)[:n]
409
410 # When key is none, use simpler decoration
Georg Brandl3a9b0622009-01-03 22:07:57 +0000411 if key is None:
Raymond Hettingerbd171bc2009-02-21 22:10:18 +0000412 it = zip(iterable, count(0,-1)) # decorate
Georg Brandl3a9b0622009-01-03 22:07:57 +0000413 result = _nlargest(n, it)
Raymond Hettingerba86fa92009-02-21 23:20:57 +0000414 return [r[0] for r in result] # undecorate
Benjamin Peterson18e95122009-01-18 22:46:33 +0000415
416 # General case, slowest method
Raymond Hettinger4901a1f2004-12-02 08:59:14 +0000417 in1, in2 = tee(iterable)
Raymond Hettingerbd171bc2009-02-21 22:10:18 +0000418 it = zip(map(key, in1), count(0,-1), in2) # decorate
Raymond Hettinger4901a1f2004-12-02 08:59:14 +0000419 result = _nlargest(n, it)
Raymond Hettingerba86fa92009-02-21 23:20:57 +0000420 return [r[2] for r in result] # undecorate
Raymond Hettinger4901a1f2004-12-02 08:59:14 +0000421
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000422if __name__ == "__main__":
423 # Simple sanity test
424 heap = []
425 data = [1, 3, 5, 7, 9, 2, 4, 6, 8, 0]
426 for item in data:
427 heappush(heap, item)
428 sort = []
429 while heap:
430 sort.append(heappop(heap))
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000431 print(sort)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000432
433 import doctest
434 doctest.testmod()