blob: 4372ad497d15bcfcf3f9ff1c9254652828b691bf [file] [log] [blame]
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001/* Drop in replacement for heapq.py
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +00002
3C implementation derived directly from heapq.py in Py2.3
4which was written by Kevin O'Connor, augmented by Tim Peters,
Éric Araujo1670b432010-09-03 22:03:10 +00005annotated by François Pinard, and converted to C by Raymond Hettinger.
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +00006
7*/
8
9#include "Python.h"
10
Georg Brandlf78e02b2008-06-10 17:40:04 +000011static int
Raymond Hettinger48f68d02014-06-14 16:43:35 -070012siftdown(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos)
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +000013{
Raymond Hettinger871620d2014-05-03 18:36:48 -070014 PyObject *newitem, *parent;
Raymond Hettinger90e93382014-05-03 18:45:54 -070015 Py_ssize_t parentpos, size;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000016 int cmp;
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +000017
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000018 assert(PyList_Check(heap));
Antoine Pitrou44d52142013-03-04 20:30:01 +010019 size = PyList_GET_SIZE(heap);
20 if (pos >= size) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000021 PyErr_SetString(PyExc_IndexError, "index out of range");
22 return -1;
23 }
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +000024
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000025 /* Follow the path to the root, moving parents down until finding
26 a place newitem fits. */
Raymond Hettinger871620d2014-05-03 18:36:48 -070027 newitem = PyList_GET_ITEM(heap, pos);
Raymond Hettinger90e93382014-05-03 18:45:54 -070028 while (pos > startpos) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000029 parentpos = (pos - 1) >> 1;
30 parent = PyList_GET_ITEM(heap, parentpos);
Raymond Hettingerdb6b62e2010-09-05 05:26:10 +000031 cmp = PyObject_RichCompareBool(newitem, parent, Py_LT);
Raymond Hettinger871620d2014-05-03 18:36:48 -070032 if (cmp == -1)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000033 return -1;
Antoine Pitrou44d52142013-03-04 20:30:01 +010034 if (size != PyList_GET_SIZE(heap)) {
Antoine Pitrou44d52142013-03-04 20:30:01 +010035 PyErr_SetString(PyExc_RuntimeError,
36 "list changed size during iteration");
37 return -1;
38 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000039 if (cmp == 0)
40 break;
Raymond Hettinger871620d2014-05-03 18:36:48 -070041 parent = PyList_GET_ITEM(heap, parentpos);
42 newitem = PyList_GET_ITEM(heap, pos);
43 PyList_SET_ITEM(heap, parentpos, newitem);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000044 PyList_SET_ITEM(heap, pos, parent);
45 pos = parentpos;
46 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000047 return 0;
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +000048}
49
50static int
Raymond Hettinger48f68d02014-06-14 16:43:35 -070051siftup(PyListObject *heap, Py_ssize_t pos)
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +000052{
Raymond Hettingerc9926082014-05-03 15:22:07 -070053 Py_ssize_t startpos, endpos, childpos, rightpos, limit;
Raymond Hettinger871620d2014-05-03 18:36:48 -070054 PyObject *tmp1, *tmp2;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000055 int cmp;
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +000056
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000057 assert(PyList_Check(heap));
Raymond Hettinger871620d2014-05-03 18:36:48 -070058 endpos = PyList_GET_SIZE(heap);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000059 startpos = pos;
60 if (pos >= endpos) {
61 PyErr_SetString(PyExc_IndexError, "index out of range");
62 return -1;
63 }
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +000064
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000065 /* Bubble up the smaller child until hitting a leaf. */
Raymond Hettingerc9926082014-05-03 15:22:07 -070066 limit = endpos / 2; /* smallest pos that has no child */
67 while (pos < limit) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000068 /* Set childpos to index of smaller child. */
Raymond Hettingerc9926082014-05-03 15:22:07 -070069 childpos = 2*pos + 1; /* leftmost child position */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000070 rightpos = childpos + 1;
71 if (rightpos < endpos) {
Raymond Hettingerdb6b62e2010-09-05 05:26:10 +000072 cmp = PyObject_RichCompareBool(
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000073 PyList_GET_ITEM(heap, childpos),
Raymond Hettingerdb6b62e2010-09-05 05:26:10 +000074 PyList_GET_ITEM(heap, rightpos),
75 Py_LT);
Raymond Hettinger871620d2014-05-03 18:36:48 -070076 if (cmp == -1)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000077 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000078 if (cmp == 0)
79 childpos = rightpos;
Raymond Hettinger871620d2014-05-03 18:36:48 -070080 if (endpos != PyList_GET_SIZE(heap)) {
81 PyErr_SetString(PyExc_RuntimeError,
82 "list changed size during iteration");
83 return -1;
84 }
Antoine Pitrou44d52142013-03-04 20:30:01 +010085 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000086 /* Move the smaller child up. */
Raymond Hettinger871620d2014-05-03 18:36:48 -070087 tmp1 = PyList_GET_ITEM(heap, childpos);
88 tmp2 = PyList_GET_ITEM(heap, pos);
89 PyList_SET_ITEM(heap, childpos, tmp2);
90 PyList_SET_ITEM(heap, pos, tmp1);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000091 pos = childpos;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000092 }
Raymond Hettinger871620d2014-05-03 18:36:48 -070093 /* Bubble it up to its final resting place (by sifting its parents down). */
Raymond Hettinger48f68d02014-06-14 16:43:35 -070094 return siftdown(heap, startpos, pos);
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +000095}
96
97static PyObject *
98heappush(PyObject *self, PyObject *args)
99{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000100 PyObject *heap, *item;
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000101
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000102 if (!PyArg_UnpackTuple(args, "heappush", 2, 2, &heap, &item))
103 return NULL;
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000104
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000105 if (!PyList_Check(heap)) {
106 PyErr_SetString(PyExc_TypeError, "heap argument must be a list");
107 return NULL;
108 }
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000109
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000110 if (PyList_Append(heap, item) == -1)
111 return NULL;
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000112
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700113 if (siftdown((PyListObject *)heap, 0, PyList_GET_SIZE(heap)-1) == -1)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000114 return NULL;
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700115 Py_RETURN_NONE;
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000116}
117
118PyDoc_STRVAR(heappush_doc,
Raymond Hettingerbd8f2902013-01-18 17:35:25 -0800119"heappush(heap, item) -> None. Push item onto heap, maintaining the heap invariant.");
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000120
121static PyObject *
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700122heappop_internal(PyObject *heap, int siftup_func(PyListObject *, Py_ssize_t))
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000123{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000124 PyObject *lastelt, *returnitem;
125 Py_ssize_t n;
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000126
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000127 if (!PyList_Check(heap)) {
128 PyErr_SetString(PyExc_TypeError, "heap argument must be a list");
129 return NULL;
130 }
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000131
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700132 /* raises IndexError if the heap is empty */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000133 n = PyList_GET_SIZE(heap);
134 if (n == 0) {
135 PyErr_SetString(PyExc_IndexError, "index out of range");
136 return NULL;
137 }
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000138
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000139 lastelt = PyList_GET_ITEM(heap, n-1) ;
140 Py_INCREF(lastelt);
Victor Stinner764a46d2013-07-17 21:50:21 +0200141 if (PyList_SetSlice(heap, n-1, n, NULL) < 0) {
142 Py_DECREF(lastelt);
143 return NULL;
144 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000145 n--;
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000146
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000147 if (!n)
148 return lastelt;
149 returnitem = PyList_GET_ITEM(heap, 0);
150 PyList_SET_ITEM(heap, 0, lastelt);
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700151 if (siftup_func((PyListObject *)heap, 0) == -1) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000152 Py_DECREF(returnitem);
153 return NULL;
154 }
155 return returnitem;
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000156}
157
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700158static PyObject *
159heappop(PyObject *self, PyObject *heap)
160{
161 return heappop_internal(heap, siftup);
162}
163
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000164PyDoc_STRVAR(heappop_doc,
165"Pop the smallest item off the heap, maintaining the heap invariant.");
166
167static PyObject *
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700168heapreplace_internal(PyObject *args, int siftup_func(PyListObject *, Py_ssize_t))
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000169{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000170 PyObject *heap, *item, *returnitem;
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000171
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000172 if (!PyArg_UnpackTuple(args, "heapreplace", 2, 2, &heap, &item))
173 return NULL;
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000174
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000175 if (!PyList_Check(heap)) {
176 PyErr_SetString(PyExc_TypeError, "heap argument must be a list");
177 return NULL;
178 }
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000179
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000180 if (PyList_GET_SIZE(heap) < 1) {
181 PyErr_SetString(PyExc_IndexError, "index out of range");
182 return NULL;
183 }
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000184
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000185 returnitem = PyList_GET_ITEM(heap, 0);
186 Py_INCREF(item);
187 PyList_SET_ITEM(heap, 0, item);
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700188 if (siftup_func((PyListObject *)heap, 0) == -1) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000189 Py_DECREF(returnitem);
190 return NULL;
191 }
192 return returnitem;
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000193}
194
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700195static PyObject *
196heapreplace(PyObject *self, PyObject *args)
197{
198 return heapreplace_internal(args, siftup);
199}
200
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000201PyDoc_STRVAR(heapreplace_doc,
Raymond Hettingerbd8f2902013-01-18 17:35:25 -0800202"heapreplace(heap, item) -> value. Pop and return the current smallest value, and add the new item.\n\
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000203\n\
204This is more efficient than heappop() followed by heappush(), and can be\n\
205more appropriate when using a fixed-size heap. Note that the value\n\
206returned may be larger than item! That constrains reasonable uses of\n\
Raymond Hettinger8158e842004-09-06 07:04:09 +0000207this routine unless written as part of a conditional replacement:\n\n\
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000208 if item > heap[0]:\n\
209 item = heapreplace(heap, item)\n");
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000210
211static PyObject *
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000212heappushpop(PyObject *self, PyObject *args)
213{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000214 PyObject *heap, *item, *returnitem;
215 int cmp;
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000216
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000217 if (!PyArg_UnpackTuple(args, "heappushpop", 2, 2, &heap, &item))
218 return NULL;
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000219
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000220 if (!PyList_Check(heap)) {
221 PyErr_SetString(PyExc_TypeError, "heap argument must be a list");
222 return NULL;
223 }
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000224
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000225 if (PyList_GET_SIZE(heap) < 1) {
226 Py_INCREF(item);
227 return item;
228 }
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000229
Raymond Hettingerdb6b62e2010-09-05 05:26:10 +0000230 cmp = PyObject_RichCompareBool(PyList_GET_ITEM(heap, 0), item, Py_LT);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000231 if (cmp == -1)
232 return NULL;
233 if (cmp == 0) {
234 Py_INCREF(item);
235 return item;
236 }
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000237
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000238 returnitem = PyList_GET_ITEM(heap, 0);
239 Py_INCREF(item);
240 PyList_SET_ITEM(heap, 0, item);
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700241 if (siftup((PyListObject *)heap, 0) == -1) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000242 Py_DECREF(returnitem);
243 return NULL;
244 }
245 return returnitem;
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000246}
247
248PyDoc_STRVAR(heappushpop_doc,
Raymond Hettingerbd8f2902013-01-18 17:35:25 -0800249"heappushpop(heap, item) -> value. Push item on the heap, then pop and return the smallest item\n\
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000250from the heap. The combined action runs more efficiently than\n\
251heappush() followed by a separate call to heappop().");
252
253static PyObject *
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700254heapify_internal(PyObject *heap, int siftup_func(PyListObject *, Py_ssize_t))
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000255{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000256 Py_ssize_t i, n;
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000257
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000258 if (!PyList_Check(heap)) {
259 PyErr_SetString(PyExc_TypeError, "heap argument must be a list");
260 return NULL;
261 }
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000262
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000263 n = PyList_GET_SIZE(heap);
264 /* Transform bottom-up. The largest index there's any point to
265 looking at is the largest with a child index in-range, so must
266 have 2*i + 1 < n, or i < (n-1)/2. If n is even = 2*j, this is
267 (2*j-1)/2 = j-1/2 so j-1 is the largest, which is n//2 - 1. If
268 n is odd = 2*j+1, this is (2*j+1-1)/2 = j so j-1 is the largest,
269 and that's again n//2-1.
270 */
271 for (i=n/2-1 ; i>=0 ; i--)
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700272 if(siftup_func((PyListObject *)heap, i) == -1)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000273 return NULL;
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700274 Py_RETURN_NONE;
275}
276
277static PyObject *
278heapify(PyObject *self, PyObject *heap)
279{
280 return heapify_internal(heap, siftup);
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000281}
282
283PyDoc_STRVAR(heapify_doc,
284"Transform list into a heap, in-place, in O(len(heap)) time.");
285
Raymond Hettinger2e3dfaf2004-06-13 05:26:33 +0000286static int
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700287siftdown_max(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos)
Raymond Hettinger2e3dfaf2004-06-13 05:26:33 +0000288{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000289 PyObject *newitem, *parent;
Raymond Hettinger90e93382014-05-03 18:45:54 -0700290 Py_ssize_t parentpos, size;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000291 int cmp;
Raymond Hettinger2e3dfaf2004-06-13 05:26:33 +0000292
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000293 assert(PyList_Check(heap));
Raymond Hettinger90e93382014-05-03 18:45:54 -0700294 size = PyList_GET_SIZE(heap);
295 if (pos >= size) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000296 PyErr_SetString(PyExc_IndexError, "index out of range");
297 return -1;
298 }
Raymond Hettinger2e3dfaf2004-06-13 05:26:33 +0000299
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000300 /* Follow the path to the root, moving parents down until finding
301 a place newitem fits. */
Raymond Hettinger871620d2014-05-03 18:36:48 -0700302 newitem = PyList_GET_ITEM(heap, pos);
Raymond Hettinger90e93382014-05-03 18:45:54 -0700303 while (pos > startpos) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000304 parentpos = (pos - 1) >> 1;
305 parent = PyList_GET_ITEM(heap, parentpos);
Raymond Hettingerdb6b62e2010-09-05 05:26:10 +0000306 cmp = PyObject_RichCompareBool(parent, newitem, Py_LT);
Raymond Hettinger871620d2014-05-03 18:36:48 -0700307 if (cmp == -1)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000308 return -1;
Raymond Hettinger90e93382014-05-03 18:45:54 -0700309 if (size != PyList_GET_SIZE(heap)) {
310 PyErr_SetString(PyExc_RuntimeError,
311 "list changed size during iteration");
312 return -1;
313 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000314 if (cmp == 0)
315 break;
Raymond Hettinger871620d2014-05-03 18:36:48 -0700316 parent = PyList_GET_ITEM(heap, parentpos);
317 newitem = PyList_GET_ITEM(heap, pos);
318 PyList_SET_ITEM(heap, parentpos, newitem);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000319 PyList_SET_ITEM(heap, pos, parent);
320 pos = parentpos;
321 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000322 return 0;
Raymond Hettinger2e3dfaf2004-06-13 05:26:33 +0000323}
324
325static int
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700326siftup_max(PyListObject *heap, Py_ssize_t pos)
Raymond Hettinger2e3dfaf2004-06-13 05:26:33 +0000327{
Raymond Hettingerc9926082014-05-03 15:22:07 -0700328 Py_ssize_t startpos, endpos, childpos, rightpos, limit;
Raymond Hettinger871620d2014-05-03 18:36:48 -0700329 PyObject *tmp1, *tmp2;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000330 int cmp;
Raymond Hettinger2e3dfaf2004-06-13 05:26:33 +0000331
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000332 assert(PyList_Check(heap));
333 endpos = PyList_GET_SIZE(heap);
334 startpos = pos;
335 if (pos >= endpos) {
336 PyErr_SetString(PyExc_IndexError, "index out of range");
337 return -1;
338 }
Raymond Hettinger2e3dfaf2004-06-13 05:26:33 +0000339
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000340 /* Bubble up the smaller child until hitting a leaf. */
Raymond Hettingerc9926082014-05-03 15:22:07 -0700341 limit = endpos / 2; /* smallest pos that has no child */
342 while (pos < limit) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000343 /* Set childpos to index of smaller child. */
Raymond Hettingerc9926082014-05-03 15:22:07 -0700344 childpos = 2*pos + 1; /* leftmost child position */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000345 rightpos = childpos + 1;
346 if (rightpos < endpos) {
Raymond Hettingerdb6b62e2010-09-05 05:26:10 +0000347 cmp = PyObject_RichCompareBool(
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000348 PyList_GET_ITEM(heap, rightpos),
Raymond Hettingerdb6b62e2010-09-05 05:26:10 +0000349 PyList_GET_ITEM(heap, childpos),
350 Py_LT);
Raymond Hettinger871620d2014-05-03 18:36:48 -0700351 if (cmp == -1)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000352 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000353 if (cmp == 0)
354 childpos = rightpos;
Raymond Hettinger871620d2014-05-03 18:36:48 -0700355 if (endpos != PyList_GET_SIZE(heap)) {
356 PyErr_SetString(PyExc_RuntimeError,
357 "list changed size during iteration");
358 return -1;
359 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000360 }
361 /* Move the smaller child up. */
Raymond Hettinger871620d2014-05-03 18:36:48 -0700362 tmp1 = PyList_GET_ITEM(heap, childpos);
363 tmp2 = PyList_GET_ITEM(heap, pos);
364 PyList_SET_ITEM(heap, childpos, tmp2);
365 PyList_SET_ITEM(heap, pos, tmp1);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000366 pos = childpos;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000367 }
Raymond Hettinger871620d2014-05-03 18:36:48 -0700368 /* Bubble it up to its final resting place (by sifting its parents down). */
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700369 return siftdown_max(heap, startpos, pos);
Raymond Hettinger2e3dfaf2004-06-13 05:26:33 +0000370}
371
372static PyObject *
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700373heappop_max(PyObject *self, PyObject *heap)
Raymond Hettinger2e3dfaf2004-06-13 05:26:33 +0000374{
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700375 return heappop_internal(heap, siftup_max);
376}
Raymond Hettinger2e3dfaf2004-06-13 05:26:33 +0000377
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700378PyDoc_STRVAR(heappop_max_doc, "Maxheap variant of heappop.");
Raymond Hettinger2e3dfaf2004-06-13 05:26:33 +0000379
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700380static PyObject *
381heapreplace_max(PyObject *self, PyObject *args)
382{
383 return heapreplace_internal(args, siftup_max);
Raymond Hettinger2e3dfaf2004-06-13 05:26:33 +0000384}
385
Raymond Hettinger234fb2d2014-05-11 14:21:23 -0700386PyDoc_STRVAR(heapreplace_max_doc, "Maxheap variant of heapreplace");
Raymond Hettinger2e3dfaf2004-06-13 05:26:33 +0000387
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700388static PyObject *
389heapify_max(PyObject *self, PyObject *heap)
390{
391 return heapify_internal(heap, siftup_max);
392}
393
394PyDoc_STRVAR(heapify_max_doc, "Maxheap variant of heapify.");
395
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000396static PyMethodDef heapq_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000397 {"heappush", (PyCFunction)heappush,
398 METH_VARARGS, heappush_doc},
399 {"heappushpop", (PyCFunction)heappushpop,
400 METH_VARARGS, heappushpop_doc},
401 {"heappop", (PyCFunction)heappop,
402 METH_O, heappop_doc},
403 {"heapreplace", (PyCFunction)heapreplace,
404 METH_VARARGS, heapreplace_doc},
405 {"heapify", (PyCFunction)heapify,
406 METH_O, heapify_doc},
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700407 {"_heappop_max", (PyCFunction)heappop_max,
408 METH_O, heappop_max_doc},
409 {"_heapreplace_max",(PyCFunction)heapreplace_max,
Raymond Hettinger234fb2d2014-05-11 14:21:23 -0700410 METH_VARARGS, heapreplace_max_doc},
Raymond Hettinger48f68d02014-06-14 16:43:35 -0700411 {"_heapify_max", (PyCFunction)heapify_max,
412 METH_O, heapify_max_doc},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000413 {NULL, NULL} /* sentinel */
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000414};
415
416PyDoc_STRVAR(module_doc,
417"Heap queue algorithm (a.k.a. priority queue).\n\
418\n\
419Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for\n\
420all k, counting elements from 0. For the sake of comparison,\n\
421non-existing elements are considered to be infinite. The interesting\n\
422property of a heap is that a[0] is always its smallest element.\n\
423\n\
424Usage:\n\
425\n\
426heap = [] # creates an empty heap\n\
427heappush(heap, item) # pushes a new item on the heap\n\
428item = heappop(heap) # pops the smallest item from the heap\n\
429item = heap[0] # smallest item on the heap without popping it\n\
430heapify(x) # transforms list into a heap, in-place, in linear time\n\
431item = heapreplace(heap, item) # pops and returns smallest item, and adds\n\
432 # new item; the heap size is unchanged\n\
433\n\
434Our API differs from textbook heap algorithms as follows:\n\
435\n\
436- We use 0-based indexing. This makes the relationship between the\n\
437 index for a node and the indexes for its children slightly less\n\
438 obvious, but is more suitable since Python uses 0-based indexing.\n\
439\n\
440- Our heappop() method returns the smallest item, not the largest.\n\
441\n\
442These two make it possible to view the heap as a regular Python list\n\
443without surprises: heap[0] is the smallest item, and heap.sort()\n\
444maintains the heap invariant!\n");
445
446
447PyDoc_STRVAR(__about__,
448"Heap queues\n\
449\n\
Neal Norwitzc1786ea2007-08-23 23:58:43 +0000450[explanation by Fran\xc3\xa7ois Pinard]\n\
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000451\n\
452Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for\n\
453all k, counting elements from 0. For the sake of comparison,\n\
454non-existing elements are considered to be infinite. The interesting\n\
455property of a heap is that a[0] is always its smallest element.\n"
456"\n\
457The strange invariant above is meant to be an efficient memory\n\
458representation for a tournament. The numbers below are `k', not a[k]:\n\
459\n\
460 0\n\
461\n\
462 1 2\n\
463\n\
464 3 4 5 6\n\
465\n\
466 7 8 9 10 11 12 13 14\n\
467\n\
468 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30\n\
469\n\
470\n\
471In the tree above, each cell `k' is topping `2*k+1' and `2*k+2'. In\n\
472an usual binary tournament we see in sports, each cell is the winner\n\
473over the two cells it tops, and we can trace the winner down the tree\n\
474to see all opponents s/he had. However, in many computer applications\n\
475of such tournaments, we do not need to trace the history of a winner.\n\
476To be more memory efficient, when a winner is promoted, we try to\n\
477replace it by something else at a lower level, and the rule becomes\n\
478that a cell and the two cells it tops contain three different items,\n\
479but the top cell \"wins\" over the two topped cells.\n"
480"\n\
481If this heap invariant is protected at all time, index 0 is clearly\n\
482the overall winner. The simplest algorithmic way to remove it and\n\
483find the \"next\" winner is to move some loser (let's say cell 30 in the\n\
484diagram above) into the 0 position, and then percolate this new 0 down\n\
485the tree, exchanging values, until the invariant is re-established.\n\
486This is clearly logarithmic on the total number of items in the tree.\n\
487By iterating over all items, you get an O(n ln n) sort.\n"
488"\n\
489A nice feature of this sort is that you can efficiently insert new\n\
490items while the sort is going on, provided that the inserted items are\n\
491not \"better\" than the last 0'th element you extracted. This is\n\
492especially useful in simulation contexts, where the tree holds all\n\
493incoming events, and the \"win\" condition means the smallest scheduled\n\
494time. When an event schedule other events for execution, they are\n\
495scheduled into the future, so they can easily go into the heap. So, a\n\
496heap is a good structure for implementing schedulers (this is what I\n\
497used for my MIDI sequencer :-).\n"
498"\n\
499Various structures for implementing schedulers have been extensively\n\
500studied, and heaps are good for this, as they are reasonably speedy,\n\
501the speed is almost constant, and the worst case is not much different\n\
502than the average case. However, there are other representations which\n\
503are more efficient overall, yet the worst cases might be terrible.\n"
504"\n\
505Heaps are also very useful in big disk sorts. You most probably all\n\
506know that a big sort implies producing \"runs\" (which are pre-sorted\n\
507sequences, which size is usually related to the amount of CPU memory),\n\
508followed by a merging passes for these runs, which merging is often\n\
509very cleverly organised[1]. It is very important that the initial\n\
510sort produces the longest runs possible. Tournaments are a good way\n\
511to that. If, using all the memory available to hold a tournament, you\n\
512replace and percolate items that happen to fit the current run, you'll\n\
513produce runs which are twice the size of the memory for random input,\n\
514and much better for input fuzzily ordered.\n"
515"\n\
516Moreover, if you output the 0'th item on disk and get an input which\n\
517may not fit in the current tournament (because the value \"wins\" over\n\
518the last output value), it cannot fit in the heap, so the size of the\n\
519heap decreases. The freed memory could be cleverly reused immediately\n\
520for progressively building a second heap, which grows at exactly the\n\
521same rate the first heap is melting. When the first heap completely\n\
522vanishes, you switch heaps and start a new run. Clever and quite\n\
523effective!\n\
524\n\
525In a word, heaps are useful memory structures to know. I use them in\n\
526a few applications, and I think it is good to keep a `heap' module\n\
527around. :-)\n"
528"\n\
529--------------------\n\
530[1] The disk balancing algorithms which are current, nowadays, are\n\
531more annoying than clever, and this is a consequence of the seeking\n\
532capabilities of the disks. On devices which cannot seek, like big\n\
533tape drives, the story was quite different, and one had to be very\n\
534clever to ensure (far in advance) that each tape movement will be the\n\
535most effective possible (that is, will best participate at\n\
536\"progressing\" the merge). Some tapes were even able to read\n\
537backwards, and this was also used to avoid the rewinding time.\n\
538Believe me, real good tape sorts were quite spectacular to watch!\n\
539From all times, sorting has always been a Great Art! :-)\n");
540
Martin v. Löwis1a214512008-06-11 05:26:20 +0000541
542static struct PyModuleDef _heapqmodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000543 PyModuleDef_HEAD_INIT,
544 "_heapq",
545 module_doc,
546 -1,
547 heapq_methods,
548 NULL,
549 NULL,
550 NULL,
551 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +0000552};
553
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000554PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +0000555PyInit__heapq(void)
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000556{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000557 PyObject *m, *about;
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000558
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000559 m = PyModule_Create(&_heapqmodule);
560 if (m == NULL)
561 return NULL;
562 about = PyUnicode_DecodeUTF8(__about__, strlen(__about__), NULL);
563 PyModule_AddObject(m, "__about__", about);
564 return m;
Raymond Hettingerc46cb2a2004-04-19 19:06:21 +0000565}
566