Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 1 | """Heap queue algorithm (a.k.a. priority queue). |
| 2 | |
| 3 | Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for |
| 4 | all k, counting elements from 0. For the sake of comparison, |
| 5 | non-existing elements are considered to be infinite. The interesting |
| 6 | property of a heap is that a[0] is always its smallest element. |
| 7 | |
| 8 | Usage: |
| 9 | |
| 10 | heap = [] # creates an empty heap |
| 11 | heappush(heap, item) # pushes a new item on the heap |
| 12 | item = heappop(heap) # pops the smallest item from the heap |
| 13 | item = heap[0] # smallest item on the heap without popping it |
| 14 | heapify(x) # transforms list into a heap, in-place, in linear time |
| 15 | item = heapreplace(heap, item) # pops and returns smallest item, and adds |
| 16 | # new item; the heap size is unchanged |
| 17 | |
| 18 | Our 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 | |
| 26 | These two make it possible to view the heap as a regular Python list |
| 27 | without surprises: heap[0] is the smallest item, and heap.sort() |
| 28 | maintains the heap invariant! |
| 29 | """ |
| 30 | |
Raymond Hettinger | 33ecffb | 2004-06-10 05:03:17 +0000 | [diff] [blame] | 31 | # Original code by Kevin O'Connor, augmented by Tim Peters and Raymond Hettinger |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 32 | |
| 33 | __about__ = """Heap queues |
| 34 | |
Mark Dickinson | b4a17a8 | 2010-07-04 19:23:49 +0000 | [diff] [blame] | 35 | [explanation by François Pinard] |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 36 | |
| 37 | Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for |
| 38 | all k, counting elements from 0. For the sake of comparison, |
| 39 | non-existing elements are considered to be infinite. The interesting |
| 40 | property of a heap is that a[0] is always its smallest element. |
| 41 | |
| 42 | The strange invariant above is meant to be an efficient memory |
| 43 | representation 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 | |
| 56 | In the tree above, each cell `k' is topping `2*k+1' and `2*k+2'. In |
| 57 | an usual binary tournament we see in sports, each cell is the winner |
| 58 | over the two cells it tops, and we can trace the winner down the tree |
| 59 | to see all opponents s/he had. However, in many computer applications |
| 60 | of such tournaments, we do not need to trace the history of a winner. |
| 61 | To be more memory efficient, when a winner is promoted, we try to |
| 62 | replace it by something else at a lower level, and the rule becomes |
| 63 | that a cell and the two cells it tops contain three different items, |
| 64 | but the top cell "wins" over the two topped cells. |
| 65 | |
| 66 | If this heap invariant is protected at all time, index 0 is clearly |
| 67 | the overall winner. The simplest algorithmic way to remove it and |
| 68 | find the "next" winner is to move some loser (let's say cell 30 in the |
| 69 | diagram above) into the 0 position, and then percolate this new 0 down |
| 70 | the tree, exchanging values, until the invariant is re-established. |
| 71 | This is clearly logarithmic on the total number of items in the tree. |
| 72 | By iterating over all items, you get an O(n ln n) sort. |
| 73 | |
| 74 | A nice feature of this sort is that you can efficiently insert new |
| 75 | items while the sort is going on, provided that the inserted items are |
| 76 | not "better" than the last 0'th element you extracted. This is |
| 77 | especially useful in simulation contexts, where the tree holds all |
| 78 | incoming events, and the "win" condition means the smallest scheduled |
| 79 | time. When an event schedule other events for execution, they are |
| 80 | scheduled into the future, so they can easily go into the heap. So, a |
| 81 | heap is a good structure for implementing schedulers (this is what I |
| 82 | used for my MIDI sequencer :-). |
| 83 | |
| 84 | Various structures for implementing schedulers have been extensively |
| 85 | studied, and heaps are good for this, as they are reasonably speedy, |
| 86 | the speed is almost constant, and the worst case is not much different |
| 87 | than the average case. However, there are other representations which |
| 88 | are more efficient overall, yet the worst cases might be terrible. |
| 89 | |
| 90 | Heaps are also very useful in big disk sorts. You most probably all |
| 91 | know that a big sort implies producing "runs" (which are pre-sorted |
| 92 | sequences, which size is usually related to the amount of CPU memory), |
| 93 | followed by a merging passes for these runs, which merging is often |
| 94 | very cleverly organised[1]. It is very important that the initial |
| 95 | sort produces the longest runs possible. Tournaments are a good way |
| 96 | to that. If, using all the memory available to hold a tournament, you |
| 97 | replace and percolate items that happen to fit the current run, you'll |
| 98 | produce runs which are twice the size of the memory for random input, |
| 99 | and much better for input fuzzily ordered. |
| 100 | |
| 101 | Moreover, if you output the 0'th item on disk and get an input which |
| 102 | may not fit in the current tournament (because the value "wins" over |
| 103 | the last output value), it cannot fit in the heap, so the size of the |
| 104 | heap decreases. The freed memory could be cleverly reused immediately |
| 105 | for progressively building a second heap, which grows at exactly the |
| 106 | same rate the first heap is melting. When the first heap completely |
| 107 | vanishes, you switch heaps and start a new run. Clever and quite |
| 108 | effective! |
| 109 | |
| 110 | In a word, heaps are useful memory structures to know. I use them in |
| 111 | a few applications, and I think it is good to keep a `heap' module |
| 112 | around. :-) |
| 113 | |
| 114 | -------------------- |
| 115 | [1] The disk balancing algorithms which are current, nowadays, are |
| 116 | more annoying than clever, and this is a consequence of the seeking |
| 117 | capabilities of the disks. On devices which cannot seek, like big |
| 118 | tape drives, the story was quite different, and one had to be very |
| 119 | clever to ensure (far in advance) that each tape movement will be the |
| 120 | most effective possible (that is, will best participate at |
| 121 | "progressing" the merge). Some tapes were even able to read |
| 122 | backwards, and this was also used to avoid the rewinding time. |
| 123 | Believe me, real good tape sorts were quite spectacular to watch! |
| 124 | From all times, sorting has always been a Great Art! :-) |
| 125 | """ |
| 126 | |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 127 | __all__ = ['heappush', 'heappop', 'heapify', 'heapreplace', 'merge', |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 128 | 'nlargest', 'nsmallest', 'heappushpop'] |
Raymond Hettinger | 33ecffb | 2004-06-10 05:03:17 +0000 | [diff] [blame] | 129 | |
Benjamin Peterson | 18e9512 | 2009-01-18 22:46:33 +0000 | [diff] [blame] | 130 | from itertools import islice, repeat, count, tee, chain |
Raymond Hettinger | b25aa36 | 2004-06-12 08:33:36 +0000 | [diff] [blame] | 131 | import bisect |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 132 | |
| 133 | def heappush(heap, item): |
| 134 | """Push item onto heap, maintaining the heap invariant.""" |
| 135 | heap.append(item) |
| 136 | _siftdown(heap, 0, len(heap)-1) |
| 137 | |
| 138 | def 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 | |
| 149 | def 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 Hettinger | 8158e84 | 2004-09-06 07:04:09 +0000 | [diff] [blame] | 155 | this routine unless written as part of a conditional replacement: |
Raymond Hettinger | 28224f8 | 2004-06-20 09:07:53 +0000 | [diff] [blame] | 156 | |
Raymond Hettinger | 8158e84 | 2004-09-06 07:04:09 +0000 | [diff] [blame] | 157 | if item > heap[0]: |
| 158 | item = heapreplace(heap, item) |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 159 | """ |
| 160 | returnitem = heap[0] # raises appropriate IndexError if heap is empty |
| 161 | heap[0] = item |
| 162 | _siftup(heap, 0) |
| 163 | return returnitem |
| 164 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 165 | def heappushpop(heap, item): |
| 166 | """Fast version of a heappush followed by a heappop.""" |
Georg Brandl | f78e02b | 2008-06-10 17:40:04 +0000 | [diff] [blame] | 167 | if heap and heap[0] < item: |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 168 | item, heap[0] = heap[0], item |
| 169 | _siftup(heap, 0) |
| 170 | return item |
| 171 | |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 172 | def heapify(x): |
Éric Araujo | 395ba35 | 2011-04-15 23:34:31 +0200 | [diff] [blame] | 173 | """Transform list into a heap, in-place, in O(len(x)) time.""" |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 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 Rossum | 805365e | 2007-05-07 22:24:25 +0000 | [diff] [blame] | 180 | for i in reversed(range(n//2)): |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 181 | _siftup(x, i) |
| 182 | |
Raymond Hettinger | e1defa4 | 2004-11-29 05:54:48 +0000 | [diff] [blame] | 183 | def nlargest(n, iterable): |
Raymond Hettinger | 33ecffb | 2004-06-10 05:03:17 +0000 | [diff] [blame] | 184 | """Find the n largest elements in a dataset. |
| 185 | |
| 186 | Equivalent to: sorted(iterable, reverse=True)[:n] |
| 187 | """ |
Raymond Hettinger | e584457 | 2011-10-30 14:32:54 -0700 | [diff] [blame] | 188 | if n < 0: |
| 189 | return [] |
Raymond Hettinger | 33ecffb | 2004-06-10 05:03:17 +0000 | [diff] [blame] | 190 | it = iter(iterable) |
| 191 | result = list(islice(it, n)) |
| 192 | if not result: |
| 193 | return result |
| 194 | heapify(result) |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 195 | _heappushpop = heappushpop |
Raymond Hettinger | 33ecffb | 2004-06-10 05:03:17 +0000 | [diff] [blame] | 196 | for elem in it: |
Benjamin Peterson | 5c6d787 | 2009-02-06 02:40:07 +0000 | [diff] [blame] | 197 | _heappushpop(result, elem) |
Raymond Hettinger | 33ecffb | 2004-06-10 05:03:17 +0000 | [diff] [blame] | 198 | result.sort(reverse=True) |
| 199 | return result |
| 200 | |
Raymond Hettinger | e1defa4 | 2004-11-29 05:54:48 +0000 | [diff] [blame] | 201 | def nsmallest(n, iterable): |
Raymond Hettinger | 33ecffb | 2004-06-10 05:03:17 +0000 | [diff] [blame] | 202 | """Find the n smallest elements in a dataset. |
| 203 | |
| 204 | Equivalent to: sorted(iterable)[:n] |
| 205 | """ |
Raymond Hettinger | e584457 | 2011-10-30 14:32:54 -0700 | [diff] [blame] | 206 | if n < 0: |
| 207 | return [] |
Raymond Hettinger | b25aa36 | 2004-06-12 08:33:36 +0000 | [diff] [blame] | 208 | if hasattr(iterable, '__len__') and n * 10 <= len(iterable): |
| 209 | # For smaller values of n, the bisect method is faster than a minheap. |
| 210 | # It is also memory efficient, consuming only n elements of space. |
| 211 | it = iter(iterable) |
| 212 | result = sorted(islice(it, 0, n)) |
| 213 | if not result: |
| 214 | return result |
| 215 | insort = bisect.insort |
| 216 | pop = result.pop |
| 217 | los = result[-1] # los --> Largest of the nsmallest |
| 218 | for elem in it: |
Raymond Hettinger | 8a9c4d9 | 2011-04-13 11:49:57 -0700 | [diff] [blame] | 219 | if elem < los: |
| 220 | insort(result, elem) |
| 221 | pop() |
| 222 | los = result[-1] |
Raymond Hettinger | b25aa36 | 2004-06-12 08:33:36 +0000 | [diff] [blame] | 223 | return result |
| 224 | # An alternative approach manifests the whole iterable in memory but |
| 225 | # saves comparisons by heapifying all at once. Also, saves time |
| 226 | # over bisect.insort() which has O(n) data movement time for every |
| 227 | # insertion. Finding the n smallest of an m length iterable requires |
| 228 | # O(m) + O(n log m) comparisons. |
Raymond Hettinger | 33ecffb | 2004-06-10 05:03:17 +0000 | [diff] [blame] | 229 | h = list(iterable) |
| 230 | heapify(h) |
Guido van Rossum | c1f779c | 2007-07-03 08:25:58 +0000 | [diff] [blame] | 231 | return list(map(heappop, repeat(h, min(n, len(h))))) |
Raymond Hettinger | 33ecffb | 2004-06-10 05:03:17 +0000 | [diff] [blame] | 232 | |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 233 | # 'heap' is a heap at all indices >= startpos, except possibly for pos. pos |
| 234 | # is the index of a leaf with a possibly out-of-order value. Restore the |
| 235 | # heap invariant. |
| 236 | def _siftdown(heap, startpos, pos): |
| 237 | newitem = heap[pos] |
| 238 | # Follow the path to the root, moving parents down until finding a place |
| 239 | # newitem fits. |
| 240 | while pos > startpos: |
| 241 | parentpos = (pos - 1) >> 1 |
| 242 | parent = heap[parentpos] |
Georg Brandl | f78e02b | 2008-06-10 17:40:04 +0000 | [diff] [blame] | 243 | if newitem < parent: |
| 244 | heap[pos] = parent |
| 245 | pos = parentpos |
| 246 | continue |
| 247 | break |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 248 | heap[pos] = newitem |
| 249 | |
| 250 | # The child indices of heap index pos are already heaps, and we want to make |
| 251 | # a heap at index pos too. We do this by bubbling the smaller child of |
| 252 | # pos up (and so on with that child's children, etc) until hitting a leaf, |
| 253 | # then using _siftdown to move the oddball originally at index pos into place. |
| 254 | # |
| 255 | # We *could* break out of the loop as soon as we find a pos where newitem <= |
| 256 | # both its children, but turns out that's not a good idea, and despite that |
| 257 | # many books write the algorithm that way. During a heap pop, the last array |
| 258 | # element is sifted in, and that tends to be large, so that comparing it |
| 259 | # against values starting from the root usually doesn't pay (= usually doesn't |
| 260 | # get us out of the loop early). See Knuth, Volume 3, where this is |
| 261 | # explained and quantified in an exercise. |
| 262 | # |
| 263 | # Cutting the # of comparisons is important, since these routines have no |
| 264 | # way to extract "the priority" from an array element, so that intelligence |
Mark Dickinson | a56c467 | 2009-01-27 18:17:45 +0000 | [diff] [blame] | 265 | # is likely to be hiding in custom comparison methods, or in array elements |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 266 | # storing (priority, record) tuples. Comparisons are thus potentially |
| 267 | # expensive. |
| 268 | # |
| 269 | # On random arrays of length 1000, making this change cut the number of |
| 270 | # comparisons made by heapify() a little, and those made by exhaustive |
| 271 | # heappop() a lot, in accord with theory. Here are typical results from 3 |
| 272 | # runs (3 just to demonstrate how small the variance is): |
| 273 | # |
| 274 | # Compares needed by heapify Compares needed by 1000 heappops |
| 275 | # -------------------------- -------------------------------- |
| 276 | # 1837 cut to 1663 14996 cut to 8680 |
| 277 | # 1855 cut to 1659 14966 cut to 8678 |
| 278 | # 1847 cut to 1660 15024 cut to 8703 |
| 279 | # |
| 280 | # Building the heap by using heappush() 1000 times instead required |
| 281 | # 2198, 2148, and 2219 compares: heapify() is more efficient, when |
| 282 | # you can use it. |
| 283 | # |
| 284 | # The total compares needed by list.sort() on the same lists were 8627, |
| 285 | # 8627, and 8632 (this should be compared to the sum of heapify() and |
| 286 | # heappop() compares): list.sort() is (unsurprisingly!) more efficient |
| 287 | # for sorting. |
| 288 | |
| 289 | def _siftup(heap, pos): |
| 290 | endpos = len(heap) |
| 291 | startpos = pos |
| 292 | newitem = heap[pos] |
| 293 | # Bubble up the smaller child until hitting a leaf. |
| 294 | childpos = 2*pos + 1 # leftmost child position |
| 295 | while childpos < endpos: |
| 296 | # Set childpos to index of smaller child. |
| 297 | rightpos = childpos + 1 |
Georg Brandl | f78e02b | 2008-06-10 17:40:04 +0000 | [diff] [blame] | 298 | if rightpos < endpos and not heap[childpos] < heap[rightpos]: |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 299 | childpos = rightpos |
| 300 | # Move the smaller child up. |
| 301 | heap[pos] = heap[childpos] |
| 302 | pos = childpos |
| 303 | childpos = 2*pos + 1 |
| 304 | # The leaf at pos is empty now. Put newitem there, and bubble it up |
| 305 | # to its final resting place (by sifting its parents down). |
| 306 | heap[pos] = newitem |
| 307 | _siftdown(heap, startpos, pos) |
| 308 | |
| 309 | # If available, use C implementation |
| 310 | try: |
Raymond Hettinger | 0dd737b | 2009-03-29 19:30:50 +0000 | [diff] [blame] | 311 | from _heapq import * |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 312 | except ImportError: |
| 313 | pass |
| 314 | |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 315 | def merge(*iterables): |
| 316 | '''Merge multiple sorted inputs into a single sorted output. |
| 317 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 318 | Similar to sorted(itertools.chain(*iterables)) but returns a generator, |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 319 | does not pull the data into memory all at once, and assumes that each of |
| 320 | the input streams is already sorted (smallest to largest). |
| 321 | |
| 322 | >>> list(merge([1,3,5,7], [0,2,4,8], [5,10,15,20], [], [25])) |
| 323 | [0, 1, 2, 3, 4, 5, 5, 7, 8, 10, 15, 20, 25] |
| 324 | |
| 325 | ''' |
| 326 | _heappop, _heapreplace, _StopIteration = heappop, heapreplace, StopIteration |
| 327 | |
| 328 | h = [] |
| 329 | h_append = h.append |
| 330 | for itnum, it in enumerate(map(iter, iterables)): |
| 331 | try: |
Georg Brandl | a18af4e | 2007-04-21 15:47:16 +0000 | [diff] [blame] | 332 | next = it.__next__ |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 333 | h_append([next(), itnum, next]) |
| 334 | except _StopIteration: |
| 335 | pass |
| 336 | heapify(h) |
| 337 | |
| 338 | while 1: |
| 339 | try: |
| 340 | while 1: |
| 341 | v, itnum, next = s = h[0] # raises IndexError when h is empty |
| 342 | yield v |
| 343 | s[0] = next() # raises StopIteration when exhausted |
| 344 | _heapreplace(h, s) # restore heap condition |
| 345 | except _StopIteration: |
| 346 | _heappop(h) # remove empty iterator |
| 347 | except IndexError: |
| 348 | return |
| 349 | |
Raymond Hettinger | 4901a1f | 2004-12-02 08:59:14 +0000 | [diff] [blame] | 350 | # Extend the implementations of nsmallest and nlargest to use a key= argument |
| 351 | _nsmallest = nsmallest |
| 352 | def nsmallest(n, iterable, key=None): |
| 353 | """Find the n smallest elements in a dataset. |
| 354 | |
| 355 | Equivalent to: sorted(iterable, key=key)[:n] |
| 356 | """ |
Benjamin Peterson | 18e9512 | 2009-01-18 22:46:33 +0000 | [diff] [blame] | 357 | # Short-cut for n==1 is to use min() when len(iterable)>0 |
| 358 | if n == 1: |
| 359 | it = iter(iterable) |
| 360 | head = list(islice(it, 1)) |
| 361 | if not head: |
| 362 | return [] |
| 363 | if key is None: |
| 364 | return [min(chain(head, it))] |
| 365 | return [min(chain(head, it), key=key)] |
| 366 | |
Éric Araujo | 395ba35 | 2011-04-15 23:34:31 +0200 | [diff] [blame] | 367 | # When n>=size, it's faster to use sorted() |
Benjamin Peterson | 18e9512 | 2009-01-18 22:46:33 +0000 | [diff] [blame] | 368 | try: |
| 369 | size = len(iterable) |
| 370 | except (TypeError, AttributeError): |
| 371 | pass |
| 372 | else: |
| 373 | if n >= size: |
| 374 | return sorted(iterable, key=key)[:n] |
| 375 | |
| 376 | # When key is none, use simpler decoration |
Georg Brandl | 3a9b062 | 2009-01-03 22:07:57 +0000 | [diff] [blame] | 377 | if key is None: |
| 378 | it = zip(iterable, count()) # decorate |
| 379 | result = _nsmallest(n, it) |
Raymond Hettinger | ba86fa9 | 2009-02-21 23:20:57 +0000 | [diff] [blame] | 380 | return [r[0] for r in result] # undecorate |
Benjamin Peterson | 18e9512 | 2009-01-18 22:46:33 +0000 | [diff] [blame] | 381 | |
| 382 | # General case, slowest method |
Raymond Hettinger | 4901a1f | 2004-12-02 08:59:14 +0000 | [diff] [blame] | 383 | in1, in2 = tee(iterable) |
Georg Brandl | 3a9b062 | 2009-01-03 22:07:57 +0000 | [diff] [blame] | 384 | it = zip(map(key, in1), count(), in2) # decorate |
Raymond Hettinger | 4901a1f | 2004-12-02 08:59:14 +0000 | [diff] [blame] | 385 | result = _nsmallest(n, it) |
Raymond Hettinger | ba86fa9 | 2009-02-21 23:20:57 +0000 | [diff] [blame] | 386 | return [r[2] for r in result] # undecorate |
Raymond Hettinger | 4901a1f | 2004-12-02 08:59:14 +0000 | [diff] [blame] | 387 | |
| 388 | _nlargest = nlargest |
| 389 | def nlargest(n, iterable, key=None): |
| 390 | """Find the n largest elements in a dataset. |
| 391 | |
| 392 | Equivalent to: sorted(iterable, key=key, reverse=True)[:n] |
| 393 | """ |
Benjamin Peterson | 18e9512 | 2009-01-18 22:46:33 +0000 | [diff] [blame] | 394 | |
| 395 | # Short-cut for n==1 is to use max() when len(iterable)>0 |
| 396 | if n == 1: |
| 397 | it = iter(iterable) |
| 398 | head = list(islice(it, 1)) |
| 399 | if not head: |
| 400 | return [] |
| 401 | if key is None: |
| 402 | return [max(chain(head, it))] |
| 403 | return [max(chain(head, it), key=key)] |
| 404 | |
Éric Araujo | 395ba35 | 2011-04-15 23:34:31 +0200 | [diff] [blame] | 405 | # When n>=size, it's faster to use sorted() |
Benjamin Peterson | 18e9512 | 2009-01-18 22:46:33 +0000 | [diff] [blame] | 406 | try: |
| 407 | size = len(iterable) |
| 408 | except (TypeError, AttributeError): |
| 409 | pass |
| 410 | else: |
| 411 | if n >= size: |
| 412 | return sorted(iterable, key=key, reverse=True)[:n] |
| 413 | |
| 414 | # When key is none, use simpler decoration |
Georg Brandl | 3a9b062 | 2009-01-03 22:07:57 +0000 | [diff] [blame] | 415 | if key is None: |
Raymond Hettinger | bd171bc | 2009-02-21 22:10:18 +0000 | [diff] [blame] | 416 | it = zip(iterable, count(0,-1)) # decorate |
Georg Brandl | 3a9b062 | 2009-01-03 22:07:57 +0000 | [diff] [blame] | 417 | result = _nlargest(n, it) |
Raymond Hettinger | ba86fa9 | 2009-02-21 23:20:57 +0000 | [diff] [blame] | 418 | return [r[0] for r in result] # undecorate |
Benjamin Peterson | 18e9512 | 2009-01-18 22:46:33 +0000 | [diff] [blame] | 419 | |
| 420 | # General case, slowest method |
Raymond Hettinger | 4901a1f | 2004-12-02 08:59:14 +0000 | [diff] [blame] | 421 | in1, in2 = tee(iterable) |
Raymond Hettinger | bd171bc | 2009-02-21 22:10:18 +0000 | [diff] [blame] | 422 | it = zip(map(key, in1), count(0,-1), in2) # decorate |
Raymond Hettinger | 4901a1f | 2004-12-02 08:59:14 +0000 | [diff] [blame] | 423 | result = _nlargest(n, it) |
Raymond Hettinger | ba86fa9 | 2009-02-21 23:20:57 +0000 | [diff] [blame] | 424 | return [r[2] for r in result] # undecorate |
Raymond Hettinger | 4901a1f | 2004-12-02 08:59:14 +0000 | [diff] [blame] | 425 | |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 426 | if __name__ == "__main__": |
| 427 | # Simple sanity test |
| 428 | heap = [] |
| 429 | data = [1, 3, 5, 7, 9, 2, 4, 6, 8, 0] |
| 430 | for item in data: |
| 431 | heappush(heap, item) |
| 432 | sort = [] |
| 433 | while heap: |
| 434 | sort.append(heappop(heap)) |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 435 | print(sort) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 436 | |
| 437 | import doctest |
| 438 | doctest.testmod() |