blob: 789b17a6930263c3e314e5d389b44e0f35ca8331 [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
Raymond Hettingerf6b26672013-03-05 01:36:30 -0500130from itertools import islice, count, tee, chain
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000131
132def heappush(heap, item):
133 """Push item onto heap, maintaining the heap invariant."""
134 heap.append(item)
135 _siftdown(heap, 0, len(heap)-1)
136
137def heappop(heap):
138 """Pop the smallest item off the heap, maintaining the heap invariant."""
139 lastelt = heap.pop() # raises appropriate IndexError if heap is empty
140 if heap:
141 returnitem = heap[0]
142 heap[0] = lastelt
143 _siftup(heap, 0)
144 else:
145 returnitem = lastelt
146 return returnitem
147
148def heapreplace(heap, item):
149 """Pop and return the current smallest value, and add the new item.
150
151 This is more efficient than heappop() followed by heappush(), and can be
152 more appropriate when using a fixed-size heap. Note that the value
153 returned may be larger than item! That constrains reasonable uses of
Raymond Hettinger8158e842004-09-06 07:04:09 +0000154 this routine unless written as part of a conditional replacement:
Raymond Hettinger28224f82004-06-20 09:07:53 +0000155
Raymond Hettinger8158e842004-09-06 07:04:09 +0000156 if item > heap[0]:
157 item = heapreplace(heap, item)
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000158 """
159 returnitem = heap[0] # raises appropriate IndexError if heap is empty
160 heap[0] = item
161 _siftup(heap, 0)
162 return returnitem
163
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000164def heappushpop(heap, item):
165 """Fast version of a heappush followed by a heappop."""
Georg Brandlf78e02b2008-06-10 17:40:04 +0000166 if heap and heap[0] < item:
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000167 item, heap[0] = heap[0], item
168 _siftup(heap, 0)
169 return item
170
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000171def heapify(x):
Éric Araujo395ba352011-04-15 23:34:31 +0200172 """Transform list into a heap, in-place, in O(len(x)) time."""
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000173 n = len(x)
174 # Transform bottom-up. The largest index there's any point to looking at
175 # is the largest with a child index in-range, so must have 2*i + 1 < n,
176 # or i < (n-1)/2. If n is even = 2*j, this is (2*j-1)/2 = j-1/2 so
177 # j-1 is the largest, which is n//2 - 1. If n is odd = 2*j+1, this is
178 # (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 +0000179 for i in reversed(range(n//2)):
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000180 _siftup(x, i)
181
Raymond Hettingerf6b26672013-03-05 01:36:30 -0500182def _heappushpop_max(heap, item):
183 """Maxheap version of a heappush followed by a heappop."""
184 if heap and item < heap[0]:
185 item, heap[0] = heap[0], item
186 _siftup_max(heap, 0)
187 return item
188
189def _heapify_max(x):
190 """Transform list into a maxheap, in-place, in O(len(x)) time."""
191 n = len(x)
192 for i in reversed(range(n//2)):
193 _siftup_max(x, i)
194
Raymond Hettinger2aad6ef2014-04-09 19:53:45 -0600195
196# Algorithm notes for nlargest() and nsmallest()
197# ==============================================
198#
199# Makes just one pass over the data while keeping the n most extreme values
200# in a heap. Memory consumption is limited to keeping n values in a list.
201#
202# Number of comparisons for n random inputs, keeping the k smallest values:
203# -----------------------------------------------------------
204# Step Comparisons Action
205# 1 2*k heapify the first k-inputs
206# 2 n-k compare new input elements to top of heap
207# 3 k*lg2(k)*(ln(n)-lg(k)) add new extreme values to the heap
208# 4 k*lg2(k) final sort of the k most extreme values
209#
210# n-random inputs k-extreme values number of comparisons % more than min()
211# --------------- ---------------- ------------------- -----------------
212# 10,000 100 13,634 36.3%
213# 100,000 100 105,163 5.2%
214# 1,000,000 100 1,006,694 0.7%
215#
216# Computing the number of comparisons for step 3:
217# -----------------------------------------------
218# * For the i-th new value from the iterable, the probability of being in the
219# k most extreme values is k/i. For example, the probability of the 101st
220# value seen being in the 100 most extreme values is 100/101.
221# * If the value is a new extreme value, the cost of inserting it into the
222# heap is log(k, 2).
223# * The probabilty times the cost gives:
224# (k/i) * log(k, 2)
225# * Summing across the remaining n-k elements gives:
226# sum((k/i) * log(k, 2) for xrange(k+1, n+1))
227# * This reduces to:
228# (H(n) - H(k)) * k * log(k, 2)
229# * Where H(n) is the n-th harmonic number estimated by:
230# H(n) = log(n, e) + gamma + 1.0 / (2.0 * n)
231# gamma = 0.5772156649
232# http://en.wikipedia.org/wiki/Harmonic_series_(mathematics)#Rate_of_divergence
233# * Substituting the H(n) formula and ignoring the (1/2*n) fraction gives:
234# comparisons = k * log(k, 2) * (log(n,e) - log(k, e))
235#
236# Worst-case for step 3:
237# ---------------------
238# In the worst case, the input data is reversed sorted so that every new element
239# must be inserted in the heap:
240# comparisons = log(k, 2) * (n - k)
241#
242# Alternative Algorithms
243# ----------------------
244# Other algorithms were not used because they:
245# 1) Took much more auxiliary memory,
246# 2) Made multiple passes over the data.
247# 3) Made more comparisons in common cases (small k, large n, semi-random input).
248# See detailed comparisons at:
249# http://code.activestate.com/recipes/577573-compare-algorithms-for-heapqsmallest
250
Raymond Hettingere1defa42004-11-29 05:54:48 +0000251def nlargest(n, iterable):
Raymond Hettinger33ecffb2004-06-10 05:03:17 +0000252 """Find the n largest elements in a dataset.
253
254 Equivalent to: sorted(iterable, reverse=True)[:n]
255 """
Raymond Hettinger8f2420c2014-03-26 02:00:54 -0700256 if n <= 0:
Raymond Hettingere5844572011-10-30 14:32:54 -0700257 return []
Raymond Hettinger33ecffb2004-06-10 05:03:17 +0000258 it = iter(iterable)
259 result = list(islice(it, n))
260 if not result:
261 return result
262 heapify(result)
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000263 _heappushpop = heappushpop
Raymond Hettinger33ecffb2004-06-10 05:03:17 +0000264 for elem in it:
Benjamin Peterson5c6d7872009-02-06 02:40:07 +0000265 _heappushpop(result, elem)
Raymond Hettinger33ecffb2004-06-10 05:03:17 +0000266 result.sort(reverse=True)
267 return result
268
Raymond Hettingere1defa42004-11-29 05:54:48 +0000269def nsmallest(n, iterable):
Raymond Hettinger33ecffb2004-06-10 05:03:17 +0000270 """Find the n smallest elements in a dataset.
271
272 Equivalent to: sorted(iterable)[:n]
273 """
Raymond Hettinger8f2420c2014-03-26 02:00:54 -0700274 if n <= 0:
Raymond Hettingere5844572011-10-30 14:32:54 -0700275 return []
Raymond Hettingerf6b26672013-03-05 01:36:30 -0500276 it = iter(iterable)
277 result = list(islice(it, n))
278 if not result:
Raymond Hettingerb25aa362004-06-12 08:33:36 +0000279 return result
Raymond Hettingerf6b26672013-03-05 01:36:30 -0500280 _heapify_max(result)
281 _heappushpop = _heappushpop_max
282 for elem in it:
283 _heappushpop(result, elem)
284 result.sort()
285 return result
Raymond Hettinger33ecffb2004-06-10 05:03:17 +0000286
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000287# 'heap' is a heap at all indices >= startpos, except possibly for pos. pos
288# is the index of a leaf with a possibly out-of-order value. Restore the
289# heap invariant.
290def _siftdown(heap, startpos, pos):
291 newitem = heap[pos]
292 # Follow the path to the root, moving parents down until finding a place
293 # newitem fits.
294 while pos > startpos:
295 parentpos = (pos - 1) >> 1
296 parent = heap[parentpos]
Georg Brandlf78e02b2008-06-10 17:40:04 +0000297 if newitem < parent:
298 heap[pos] = parent
299 pos = parentpos
300 continue
301 break
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000302 heap[pos] = newitem
303
304# The child indices of heap index pos are already heaps, and we want to make
305# a heap at index pos too. We do this by bubbling the smaller child of
306# pos up (and so on with that child's children, etc) until hitting a leaf,
307# then using _siftdown to move the oddball originally at index pos into place.
308#
309# We *could* break out of the loop as soon as we find a pos where newitem <=
310# both its children, but turns out that's not a good idea, and despite that
311# many books write the algorithm that way. During a heap pop, the last array
312# element is sifted in, and that tends to be large, so that comparing it
313# against values starting from the root usually doesn't pay (= usually doesn't
314# get us out of the loop early). See Knuth, Volume 3, where this is
315# explained and quantified in an exercise.
316#
317# Cutting the # of comparisons is important, since these routines have no
318# way to extract "the priority" from an array element, so that intelligence
Mark Dickinsona56c4672009-01-27 18:17:45 +0000319# is likely to be hiding in custom comparison methods, or in array elements
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000320# storing (priority, record) tuples. Comparisons are thus potentially
321# expensive.
322#
323# On random arrays of length 1000, making this change cut the number of
324# comparisons made by heapify() a little, and those made by exhaustive
325# heappop() a lot, in accord with theory. Here are typical results from 3
326# runs (3 just to demonstrate how small the variance is):
327#
328# Compares needed by heapify Compares needed by 1000 heappops
329# -------------------------- --------------------------------
330# 1837 cut to 1663 14996 cut to 8680
331# 1855 cut to 1659 14966 cut to 8678
332# 1847 cut to 1660 15024 cut to 8703
333#
334# Building the heap by using heappush() 1000 times instead required
335# 2198, 2148, and 2219 compares: heapify() is more efficient, when
336# you can use it.
337#
338# The total compares needed by list.sort() on the same lists were 8627,
339# 8627, and 8632 (this should be compared to the sum of heapify() and
340# heappop() compares): list.sort() is (unsurprisingly!) more efficient
341# for sorting.
342
343def _siftup(heap, pos):
344 endpos = len(heap)
345 startpos = pos
346 newitem = heap[pos]
347 # Bubble up the smaller child until hitting a leaf.
348 childpos = 2*pos + 1 # leftmost child position
349 while childpos < endpos:
350 # Set childpos to index of smaller child.
351 rightpos = childpos + 1
Georg Brandlf78e02b2008-06-10 17:40:04 +0000352 if rightpos < endpos and not heap[childpos] < heap[rightpos]:
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000353 childpos = rightpos
354 # Move the smaller child up.
355 heap[pos] = heap[childpos]
356 pos = childpos
357 childpos = 2*pos + 1
358 # The leaf at pos is empty now. Put newitem there, and bubble it up
359 # to its final resting place (by sifting its parents down).
360 heap[pos] = newitem
361 _siftdown(heap, startpos, pos)
362
Raymond Hettingerf6b26672013-03-05 01:36:30 -0500363def _siftdown_max(heap, startpos, pos):
364 'Maxheap variant of _siftdown'
365 newitem = heap[pos]
366 # Follow the path to the root, moving parents down until finding a place
367 # newitem fits.
368 while pos > startpos:
369 parentpos = (pos - 1) >> 1
370 parent = heap[parentpos]
371 if parent < newitem:
372 heap[pos] = parent
373 pos = parentpos
374 continue
375 break
376 heap[pos] = newitem
377
378def _siftup_max(heap, pos):
Raymond Hettinger2e8d9a72013-03-05 02:11:10 -0500379 'Maxheap variant of _siftup'
Raymond Hettingerf6b26672013-03-05 01:36:30 -0500380 endpos = len(heap)
381 startpos = pos
382 newitem = heap[pos]
383 # Bubble up the larger child until hitting a leaf.
384 childpos = 2*pos + 1 # leftmost child position
385 while childpos < endpos:
386 # Set childpos to index of larger child.
387 rightpos = childpos + 1
388 if rightpos < endpos and not heap[rightpos] < heap[childpos]:
389 childpos = rightpos
390 # Move the larger child up.
391 heap[pos] = heap[childpos]
392 pos = childpos
393 childpos = 2*pos + 1
394 # The leaf at pos is empty now. Put newitem there, and bubble it up
395 # to its final resting place (by sifting its parents down).
396 heap[pos] = newitem
397 _siftdown_max(heap, startpos, pos)
398
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000399# If available, use C implementation
400try:
Raymond Hettinger0dd737b2009-03-29 19:30:50 +0000401 from _heapq import *
Brett Cannoncd171c82013-07-04 17:43:24 -0400402except ImportError:
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000403 pass
404
Thomas Wouterscf297e42007-02-23 15:07:44 +0000405def merge(*iterables):
406 '''Merge multiple sorted inputs into a single sorted output.
407
Guido van Rossumd8faa362007-04-27 19:54:29 +0000408 Similar to sorted(itertools.chain(*iterables)) but returns a generator,
Thomas Wouterscf297e42007-02-23 15:07:44 +0000409 does not pull the data into memory all at once, and assumes that each of
410 the input streams is already sorted (smallest to largest).
411
412 >>> list(merge([1,3,5,7], [0,2,4,8], [5,10,15,20], [], [25]))
413 [0, 1, 2, 3, 4, 5, 5, 7, 8, 10, 15, 20, 25]
414
415 '''
416 _heappop, _heapreplace, _StopIteration = heappop, heapreplace, StopIteration
Raymond Hettingerf2762322013-09-11 01:15:40 -0500417 _len = len
Thomas Wouterscf297e42007-02-23 15:07:44 +0000418
419 h = []
420 h_append = h.append
421 for itnum, it in enumerate(map(iter, iterables)):
422 try:
Georg Brandla18af4e2007-04-21 15:47:16 +0000423 next = it.__next__
Thomas Wouterscf297e42007-02-23 15:07:44 +0000424 h_append([next(), itnum, next])
425 except _StopIteration:
426 pass
427 heapify(h)
428
Raymond Hettingerf2762322013-09-11 01:15:40 -0500429 while _len(h) > 1:
Thomas Wouterscf297e42007-02-23 15:07:44 +0000430 try:
Raymond Hettingerf2762322013-09-11 01:15:40 -0500431 while True:
432 v, itnum, next = s = h[0]
Thomas Wouterscf297e42007-02-23 15:07:44 +0000433 yield v
434 s[0] = next() # raises StopIteration when exhausted
435 _heapreplace(h, s) # restore heap condition
436 except _StopIteration:
437 _heappop(h) # remove empty iterator
Raymond Hettingerf2762322013-09-11 01:15:40 -0500438 if h:
439 # fast case when only a single iterator remains
440 v, itnum, next = h[0]
441 yield v
442 yield from next.__self__
Thomas Wouterscf297e42007-02-23 15:07:44 +0000443
Raymond Hettinger4901a1f2004-12-02 08:59:14 +0000444# Extend the implementations of nsmallest and nlargest to use a key= argument
445_nsmallest = nsmallest
446def nsmallest(n, iterable, key=None):
447 """Find the n smallest elements in a dataset.
448
449 Equivalent to: sorted(iterable, key=key)[:n]
450 """
Benjamin Peterson18e95122009-01-18 22:46:33 +0000451 # Short-cut for n==1 is to use min() when len(iterable)>0
452 if n == 1:
453 it = iter(iterable)
454 head = list(islice(it, 1))
455 if not head:
456 return []
457 if key is None:
458 return [min(chain(head, it))]
459 return [min(chain(head, it), key=key)]
460
Éric Araujo395ba352011-04-15 23:34:31 +0200461 # When n>=size, it's faster to use sorted()
Benjamin Peterson18e95122009-01-18 22:46:33 +0000462 try:
463 size = len(iterable)
464 except (TypeError, AttributeError):
465 pass
466 else:
467 if n >= size:
468 return sorted(iterable, key=key)[:n]
469
470 # When key is none, use simpler decoration
Georg Brandl3a9b0622009-01-03 22:07:57 +0000471 if key is None:
472 it = zip(iterable, count()) # decorate
473 result = _nsmallest(n, it)
Raymond Hettingerba86fa92009-02-21 23:20:57 +0000474 return [r[0] for r in result] # undecorate
Benjamin Peterson18e95122009-01-18 22:46:33 +0000475
476 # General case, slowest method
Raymond Hettinger4901a1f2004-12-02 08:59:14 +0000477 in1, in2 = tee(iterable)
Georg Brandl3a9b0622009-01-03 22:07:57 +0000478 it = zip(map(key, in1), count(), in2) # decorate
Raymond Hettinger4901a1f2004-12-02 08:59:14 +0000479 result = _nsmallest(n, it)
Raymond Hettingerba86fa92009-02-21 23:20:57 +0000480 return [r[2] for r in result] # undecorate
Raymond Hettinger4901a1f2004-12-02 08:59:14 +0000481
482_nlargest = nlargest
483def nlargest(n, iterable, key=None):
484 """Find the n largest elements in a dataset.
485
486 Equivalent to: sorted(iterable, key=key, reverse=True)[:n]
487 """
Benjamin Peterson18e95122009-01-18 22:46:33 +0000488
489 # Short-cut for n==1 is to use max() when len(iterable)>0
490 if n == 1:
491 it = iter(iterable)
492 head = list(islice(it, 1))
493 if not head:
494 return []
495 if key is None:
496 return [max(chain(head, it))]
497 return [max(chain(head, it), key=key)]
498
Éric Araujo395ba352011-04-15 23:34:31 +0200499 # When n>=size, it's faster to use sorted()
Benjamin Peterson18e95122009-01-18 22:46:33 +0000500 try:
501 size = len(iterable)
502 except (TypeError, AttributeError):
503 pass
504 else:
505 if n >= size:
506 return sorted(iterable, key=key, reverse=True)[:n]
507
508 # When key is none, use simpler decoration
Georg Brandl3a9b0622009-01-03 22:07:57 +0000509 if key is None:
Raymond Hettingerbd171bc2009-02-21 22:10:18 +0000510 it = zip(iterable, count(0,-1)) # decorate
Georg Brandl3a9b0622009-01-03 22:07:57 +0000511 result = _nlargest(n, it)
Raymond Hettingerba86fa92009-02-21 23:20:57 +0000512 return [r[0] for r in result] # undecorate
Benjamin Peterson18e95122009-01-18 22:46:33 +0000513
514 # General case, slowest method
Raymond Hettinger4901a1f2004-12-02 08:59:14 +0000515 in1, in2 = tee(iterable)
Raymond Hettingerbd171bc2009-02-21 22:10:18 +0000516 it = zip(map(key, in1), count(0,-1), in2) # decorate
Raymond Hettinger4901a1f2004-12-02 08:59:14 +0000517 result = _nlargest(n, it)
Raymond Hettingerba86fa92009-02-21 23:20:57 +0000518 return [r[2] for r in result] # undecorate
Raymond Hettinger4901a1f2004-12-02 08:59:14 +0000519
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000520if __name__ == "__main__":
521 # Simple sanity test
522 heap = []
523 data = [1, 3, 5, 7, 9, 2, 4, 6, 8, 0]
524 for item in data:
525 heappush(heap, item)
526 sort = []
527 while heap:
528 sort.append(heappop(heap))
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000529 print(sort)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000530
531 import doctest
532 doctest.testmod()