Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1 | /* Drop in replacement for heapq.py |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 2 | |
| 3 | C implementation derived directly from heapq.py in Py2.3 |
| 4 | which was written by Kevin O'Connor, augmented by Tim Peters, |
Éric Araujo | 1670b43 | 2010-09-03 22:03:10 +0000 | [diff] [blame] | 5 | annotated by François Pinard, and converted to C by Raymond Hettinger. |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 6 | |
| 7 | */ |
| 8 | |
| 9 | #include "Python.h" |
| 10 | |
Georg Brandl | f78e02b | 2008-06-10 17:40:04 +0000 | [diff] [blame] | 11 | static int |
Martin v. Löwis | ad0a462 | 2006-02-16 14:30:23 +0000 | [diff] [blame] | 12 | _siftdown(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos) |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 13 | { |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 14 | PyObject *newitem, *parent; |
Raymond Hettinger | 90e9338 | 2014-05-03 18:45:54 -0700 | [diff] [blame] | 15 | Py_ssize_t parentpos, size; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 16 | int cmp; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 17 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 18 | assert(PyList_Check(heap)); |
Antoine Pitrou | 44d5214 | 2013-03-04 20:30:01 +0100 | [diff] [blame] | 19 | size = PyList_GET_SIZE(heap); |
| 20 | if (pos >= size) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 21 | PyErr_SetString(PyExc_IndexError, "index out of range"); |
| 22 | return -1; |
| 23 | } |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 24 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 25 | /* Follow the path to the root, moving parents down until finding |
| 26 | a place newitem fits. */ |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 27 | newitem = PyList_GET_ITEM(heap, pos); |
Raymond Hettinger | 90e9338 | 2014-05-03 18:45:54 -0700 | [diff] [blame] | 28 | while (pos > startpos) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 29 | parentpos = (pos - 1) >> 1; |
| 30 | parent = PyList_GET_ITEM(heap, parentpos); |
Raymond Hettinger | db6b62e | 2010-09-05 05:26:10 +0000 | [diff] [blame] | 31 | cmp = PyObject_RichCompareBool(newitem, parent, Py_LT); |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 32 | if (cmp == -1) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 33 | return -1; |
Antoine Pitrou | 44d5214 | 2013-03-04 20:30:01 +0100 | [diff] [blame] | 34 | if (size != PyList_GET_SIZE(heap)) { |
Antoine Pitrou | 44d5214 | 2013-03-04 20:30:01 +0100 | [diff] [blame] | 35 | PyErr_SetString(PyExc_RuntimeError, |
| 36 | "list changed size during iteration"); |
| 37 | return -1; |
| 38 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 39 | if (cmp == 0) |
| 40 | break; |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 41 | parent = PyList_GET_ITEM(heap, parentpos); |
| 42 | newitem = PyList_GET_ITEM(heap, pos); |
| 43 | PyList_SET_ITEM(heap, parentpos, newitem); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 44 | PyList_SET_ITEM(heap, pos, parent); |
| 45 | pos = parentpos; |
| 46 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 47 | return 0; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | static int |
Martin v. Löwis | ad0a462 | 2006-02-16 14:30:23 +0000 | [diff] [blame] | 51 | _siftup(PyListObject *heap, Py_ssize_t pos) |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 52 | { |
Raymond Hettinger | c992608 | 2014-05-03 15:22:07 -0700 | [diff] [blame] | 53 | Py_ssize_t startpos, endpos, childpos, rightpos, limit; |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 54 | PyObject *tmp1, *tmp2; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 55 | int cmp; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 56 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 57 | assert(PyList_Check(heap)); |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 58 | endpos = PyList_GET_SIZE(heap); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 59 | startpos = pos; |
| 60 | if (pos >= endpos) { |
| 61 | PyErr_SetString(PyExc_IndexError, "index out of range"); |
| 62 | return -1; |
| 63 | } |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 64 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 65 | /* Bubble up the smaller child until hitting a leaf. */ |
Raymond Hettinger | c992608 | 2014-05-03 15:22:07 -0700 | [diff] [blame] | 66 | limit = endpos / 2; /* smallest pos that has no child */ |
| 67 | while (pos < limit) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 68 | /* Set childpos to index of smaller child. */ |
Raymond Hettinger | c992608 | 2014-05-03 15:22:07 -0700 | [diff] [blame] | 69 | childpos = 2*pos + 1; /* leftmost child position */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 70 | rightpos = childpos + 1; |
| 71 | if (rightpos < endpos) { |
Raymond Hettinger | db6b62e | 2010-09-05 05:26:10 +0000 | [diff] [blame] | 72 | cmp = PyObject_RichCompareBool( |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 73 | PyList_GET_ITEM(heap, childpos), |
Raymond Hettinger | db6b62e | 2010-09-05 05:26:10 +0000 | [diff] [blame] | 74 | PyList_GET_ITEM(heap, rightpos), |
| 75 | Py_LT); |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 76 | if (cmp == -1) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 77 | return -1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 78 | if (cmp == 0) |
| 79 | childpos = rightpos; |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 80 | if (endpos != PyList_GET_SIZE(heap)) { |
| 81 | PyErr_SetString(PyExc_RuntimeError, |
| 82 | "list changed size during iteration"); |
| 83 | return -1; |
| 84 | } |
Antoine Pitrou | 44d5214 | 2013-03-04 20:30:01 +0100 | [diff] [blame] | 85 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 86 | /* Move the smaller child up. */ |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 87 | 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 Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 91 | pos = childpos; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 92 | } |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 93 | /* Bubble it up to its final resting place (by sifting its parents down). */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 94 | return _siftdown(heap, startpos, pos); |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | static PyObject * |
| 98 | heappush(PyObject *self, PyObject *args) |
| 99 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 100 | PyObject *heap, *item; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 101 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 102 | if (!PyArg_UnpackTuple(args, "heappush", 2, 2, &heap, &item)) |
| 103 | return NULL; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 104 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 105 | if (!PyList_Check(heap)) { |
| 106 | PyErr_SetString(PyExc_TypeError, "heap argument must be a list"); |
| 107 | return NULL; |
| 108 | } |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 109 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 110 | if (PyList_Append(heap, item) == -1) |
| 111 | return NULL; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 112 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 113 | if (_siftdown((PyListObject *)heap, 0, PyList_GET_SIZE(heap)-1) == -1) |
| 114 | return NULL; |
| 115 | Py_INCREF(Py_None); |
| 116 | return Py_None; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | PyDoc_STRVAR(heappush_doc, |
Raymond Hettinger | bd8f290 | 2013-01-18 17:35:25 -0800 | [diff] [blame] | 120 | "heappush(heap, item) -> None. Push item onto heap, maintaining the heap invariant."); |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 121 | |
| 122 | static PyObject * |
| 123 | heappop(PyObject *self, PyObject *heap) |
| 124 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 125 | PyObject *lastelt, *returnitem; |
| 126 | Py_ssize_t n; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 127 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 128 | if (!PyList_Check(heap)) { |
| 129 | PyErr_SetString(PyExc_TypeError, "heap argument must be a list"); |
| 130 | return NULL; |
| 131 | } |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 132 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 133 | /* # raises appropriate IndexError if heap is empty */ |
| 134 | n = PyList_GET_SIZE(heap); |
| 135 | if (n == 0) { |
| 136 | PyErr_SetString(PyExc_IndexError, "index out of range"); |
| 137 | return NULL; |
| 138 | } |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 139 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 140 | lastelt = PyList_GET_ITEM(heap, n-1) ; |
| 141 | Py_INCREF(lastelt); |
Victor Stinner | 764a46d | 2013-07-17 21:50:21 +0200 | [diff] [blame] | 142 | if (PyList_SetSlice(heap, n-1, n, NULL) < 0) { |
| 143 | Py_DECREF(lastelt); |
| 144 | return NULL; |
| 145 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 146 | n--; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 147 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 148 | if (!n) |
| 149 | return lastelt; |
| 150 | returnitem = PyList_GET_ITEM(heap, 0); |
| 151 | PyList_SET_ITEM(heap, 0, lastelt); |
| 152 | if (_siftup((PyListObject *)heap, 0) == -1) { |
| 153 | Py_DECREF(returnitem); |
| 154 | return NULL; |
| 155 | } |
| 156 | return returnitem; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | PyDoc_STRVAR(heappop_doc, |
| 160 | "Pop the smallest item off the heap, maintaining the heap invariant."); |
| 161 | |
| 162 | static PyObject * |
| 163 | heapreplace(PyObject *self, PyObject *args) |
| 164 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 165 | PyObject *heap, *item, *returnitem; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 166 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 167 | if (!PyArg_UnpackTuple(args, "heapreplace", 2, 2, &heap, &item)) |
| 168 | return NULL; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 169 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 170 | if (!PyList_Check(heap)) { |
| 171 | PyErr_SetString(PyExc_TypeError, "heap argument must be a list"); |
| 172 | return NULL; |
| 173 | } |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 174 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 175 | if (PyList_GET_SIZE(heap) < 1) { |
| 176 | PyErr_SetString(PyExc_IndexError, "index out of range"); |
| 177 | return NULL; |
| 178 | } |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 179 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 180 | returnitem = PyList_GET_ITEM(heap, 0); |
| 181 | Py_INCREF(item); |
| 182 | PyList_SET_ITEM(heap, 0, item); |
| 183 | if (_siftup((PyListObject *)heap, 0) == -1) { |
| 184 | Py_DECREF(returnitem); |
| 185 | return NULL; |
| 186 | } |
| 187 | return returnitem; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | PyDoc_STRVAR(heapreplace_doc, |
Raymond Hettinger | bd8f290 | 2013-01-18 17:35:25 -0800 | [diff] [blame] | 191 | "heapreplace(heap, item) -> value. Pop and return the current smallest value, and add the new item.\n\ |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 192 | \n\ |
| 193 | This is more efficient than heappop() followed by heappush(), and can be\n\ |
| 194 | more appropriate when using a fixed-size heap. Note that the value\n\ |
| 195 | returned may be larger than item! That constrains reasonable uses of\n\ |
Raymond Hettinger | 8158e84 | 2004-09-06 07:04:09 +0000 | [diff] [blame] | 196 | this routine unless written as part of a conditional replacement:\n\n\ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 197 | if item > heap[0]:\n\ |
| 198 | item = heapreplace(heap, item)\n"); |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 199 | |
| 200 | static PyObject * |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 201 | heappushpop(PyObject *self, PyObject *args) |
| 202 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 203 | PyObject *heap, *item, *returnitem; |
| 204 | int cmp; |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 205 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 206 | if (!PyArg_UnpackTuple(args, "heappushpop", 2, 2, &heap, &item)) |
| 207 | return NULL; |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 208 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 209 | if (!PyList_Check(heap)) { |
| 210 | PyErr_SetString(PyExc_TypeError, "heap argument must be a list"); |
| 211 | return NULL; |
| 212 | } |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 213 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 214 | if (PyList_GET_SIZE(heap) < 1) { |
| 215 | Py_INCREF(item); |
| 216 | return item; |
| 217 | } |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 218 | |
Raymond Hettinger | db6b62e | 2010-09-05 05:26:10 +0000 | [diff] [blame] | 219 | cmp = PyObject_RichCompareBool(PyList_GET_ITEM(heap, 0), item, Py_LT); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 220 | if (cmp == -1) |
| 221 | return NULL; |
| 222 | if (cmp == 0) { |
| 223 | Py_INCREF(item); |
| 224 | return item; |
| 225 | } |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 226 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 227 | returnitem = PyList_GET_ITEM(heap, 0); |
| 228 | Py_INCREF(item); |
| 229 | PyList_SET_ITEM(heap, 0, item); |
| 230 | if (_siftup((PyListObject *)heap, 0) == -1) { |
| 231 | Py_DECREF(returnitem); |
| 232 | return NULL; |
| 233 | } |
| 234 | return returnitem; |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | PyDoc_STRVAR(heappushpop_doc, |
Raymond Hettinger | bd8f290 | 2013-01-18 17:35:25 -0800 | [diff] [blame] | 238 | "heappushpop(heap, item) -> value. Push item on the heap, then pop and return the smallest item\n\ |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 239 | from the heap. The combined action runs more efficiently than\n\ |
| 240 | heappush() followed by a separate call to heappop()."); |
| 241 | |
| 242 | static PyObject * |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 243 | heapify(PyObject *self, PyObject *heap) |
| 244 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 245 | Py_ssize_t i, n; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 246 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 247 | if (!PyList_Check(heap)) { |
| 248 | PyErr_SetString(PyExc_TypeError, "heap argument must be a list"); |
| 249 | return NULL; |
| 250 | } |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 251 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 252 | n = PyList_GET_SIZE(heap); |
| 253 | /* Transform bottom-up. The largest index there's any point to |
| 254 | looking at is the largest with a child index in-range, so must |
| 255 | have 2*i + 1 < n, or i < (n-1)/2. If n is even = 2*j, this is |
| 256 | (2*j-1)/2 = j-1/2 so j-1 is the largest, which is n//2 - 1. If |
| 257 | n is odd = 2*j+1, this is (2*j+1-1)/2 = j so j-1 is the largest, |
| 258 | and that's again n//2-1. |
| 259 | */ |
| 260 | for (i=n/2-1 ; i>=0 ; i--) |
| 261 | if(_siftup((PyListObject *)heap, i) == -1) |
| 262 | return NULL; |
| 263 | Py_INCREF(Py_None); |
| 264 | return Py_None; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | PyDoc_STRVAR(heapify_doc, |
| 268 | "Transform list into a heap, in-place, in O(len(heap)) time."); |
| 269 | |
Raymond Hettinger | 2e3dfaf | 2004-06-13 05:26:33 +0000 | [diff] [blame] | 270 | static int |
Martin v. Löwis | ad0a462 | 2006-02-16 14:30:23 +0000 | [diff] [blame] | 271 | _siftdownmax(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos) |
Raymond Hettinger | 2e3dfaf | 2004-06-13 05:26:33 +0000 | [diff] [blame] | 272 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 273 | PyObject *newitem, *parent; |
Raymond Hettinger | 90e9338 | 2014-05-03 18:45:54 -0700 | [diff] [blame] | 274 | Py_ssize_t parentpos, size; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 275 | int cmp; |
Raymond Hettinger | 2e3dfaf | 2004-06-13 05:26:33 +0000 | [diff] [blame] | 276 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 277 | assert(PyList_Check(heap)); |
Raymond Hettinger | 90e9338 | 2014-05-03 18:45:54 -0700 | [diff] [blame] | 278 | size = PyList_GET_SIZE(heap); |
| 279 | if (pos >= size) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 280 | PyErr_SetString(PyExc_IndexError, "index out of range"); |
| 281 | return -1; |
| 282 | } |
Raymond Hettinger | 2e3dfaf | 2004-06-13 05:26:33 +0000 | [diff] [blame] | 283 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 284 | /* Follow the path to the root, moving parents down until finding |
| 285 | a place newitem fits. */ |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 286 | newitem = PyList_GET_ITEM(heap, pos); |
Raymond Hettinger | 90e9338 | 2014-05-03 18:45:54 -0700 | [diff] [blame] | 287 | while (pos > startpos) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 288 | parentpos = (pos - 1) >> 1; |
| 289 | parent = PyList_GET_ITEM(heap, parentpos); |
Raymond Hettinger | db6b62e | 2010-09-05 05:26:10 +0000 | [diff] [blame] | 290 | cmp = PyObject_RichCompareBool(parent, newitem, Py_LT); |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 291 | if (cmp == -1) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 292 | return -1; |
Raymond Hettinger | 90e9338 | 2014-05-03 18:45:54 -0700 | [diff] [blame] | 293 | if (size != PyList_GET_SIZE(heap)) { |
| 294 | PyErr_SetString(PyExc_RuntimeError, |
| 295 | "list changed size during iteration"); |
| 296 | return -1; |
| 297 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 298 | if (cmp == 0) |
| 299 | break; |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 300 | parent = PyList_GET_ITEM(heap, parentpos); |
| 301 | newitem = PyList_GET_ITEM(heap, pos); |
| 302 | PyList_SET_ITEM(heap, parentpos, newitem); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 303 | PyList_SET_ITEM(heap, pos, parent); |
| 304 | pos = parentpos; |
| 305 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 306 | return 0; |
Raymond Hettinger | 2e3dfaf | 2004-06-13 05:26:33 +0000 | [diff] [blame] | 307 | } |
| 308 | |
| 309 | static int |
Martin v. Löwis | ad0a462 | 2006-02-16 14:30:23 +0000 | [diff] [blame] | 310 | _siftupmax(PyListObject *heap, Py_ssize_t pos) |
Raymond Hettinger | 2e3dfaf | 2004-06-13 05:26:33 +0000 | [diff] [blame] | 311 | { |
Raymond Hettinger | c992608 | 2014-05-03 15:22:07 -0700 | [diff] [blame] | 312 | Py_ssize_t startpos, endpos, childpos, rightpos, limit; |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 313 | PyObject *tmp1, *tmp2; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 314 | int cmp; |
Raymond Hettinger | 2e3dfaf | 2004-06-13 05:26:33 +0000 | [diff] [blame] | 315 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 316 | assert(PyList_Check(heap)); |
| 317 | endpos = PyList_GET_SIZE(heap); |
| 318 | startpos = pos; |
| 319 | if (pos >= endpos) { |
| 320 | PyErr_SetString(PyExc_IndexError, "index out of range"); |
| 321 | return -1; |
| 322 | } |
Raymond Hettinger | 2e3dfaf | 2004-06-13 05:26:33 +0000 | [diff] [blame] | 323 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 324 | /* Bubble up the smaller child until hitting a leaf. */ |
Raymond Hettinger | c992608 | 2014-05-03 15:22:07 -0700 | [diff] [blame] | 325 | limit = endpos / 2; /* smallest pos that has no child */ |
| 326 | while (pos < limit) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 327 | /* Set childpos to index of smaller child. */ |
Raymond Hettinger | c992608 | 2014-05-03 15:22:07 -0700 | [diff] [blame] | 328 | childpos = 2*pos + 1; /* leftmost child position */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 329 | rightpos = childpos + 1; |
| 330 | if (rightpos < endpos) { |
Raymond Hettinger | db6b62e | 2010-09-05 05:26:10 +0000 | [diff] [blame] | 331 | cmp = PyObject_RichCompareBool( |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 332 | PyList_GET_ITEM(heap, rightpos), |
Raymond Hettinger | db6b62e | 2010-09-05 05:26:10 +0000 | [diff] [blame] | 333 | PyList_GET_ITEM(heap, childpos), |
| 334 | Py_LT); |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 335 | if (cmp == -1) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 336 | return -1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 337 | if (cmp == 0) |
| 338 | childpos = rightpos; |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 339 | if (endpos != PyList_GET_SIZE(heap)) { |
| 340 | PyErr_SetString(PyExc_RuntimeError, |
| 341 | "list changed size during iteration"); |
| 342 | return -1; |
| 343 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 344 | } |
| 345 | /* Move the smaller child up. */ |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 346 | tmp1 = PyList_GET_ITEM(heap, childpos); |
| 347 | tmp2 = PyList_GET_ITEM(heap, pos); |
| 348 | PyList_SET_ITEM(heap, childpos, tmp2); |
| 349 | PyList_SET_ITEM(heap, pos, tmp1); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 350 | pos = childpos; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 351 | } |
Raymond Hettinger | 871620d | 2014-05-03 18:36:48 -0700 | [diff] [blame] | 352 | /* Bubble it up to its final resting place (by sifting its parents down). */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 353 | return _siftdownmax(heap, startpos, pos); |
Raymond Hettinger | 2e3dfaf | 2004-06-13 05:26:33 +0000 | [diff] [blame] | 354 | } |
| 355 | |
| 356 | static PyObject * |
Raymond Hettinger | 234fb2d | 2014-05-11 14:21:23 -0700 | [diff] [blame] | 357 | _heapreplace_max(PyObject *self, PyObject *args) |
Raymond Hettinger | 2e3dfaf | 2004-06-13 05:26:33 +0000 | [diff] [blame] | 358 | { |
Raymond Hettinger | 234fb2d | 2014-05-11 14:21:23 -0700 | [diff] [blame] | 359 | PyObject *heap, *item, *returnitem; |
Raymond Hettinger | 2e3dfaf | 2004-06-13 05:26:33 +0000 | [diff] [blame] | 360 | |
Raymond Hettinger | 234fb2d | 2014-05-11 14:21:23 -0700 | [diff] [blame] | 361 | if (!PyArg_UnpackTuple(args, "_heapreplace_max", 2, 2, &heap, &item)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 362 | return NULL; |
Raymond Hettinger | 2e3dfaf | 2004-06-13 05:26:33 +0000 | [diff] [blame] | 363 | |
Raymond Hettinger | 234fb2d | 2014-05-11 14:21:23 -0700 | [diff] [blame] | 364 | if (!PyList_Check(heap)) { |
| 365 | PyErr_SetString(PyExc_TypeError, "heap argument must be a list"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 366 | return NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 367 | } |
Raymond Hettinger | 2e3dfaf | 2004-06-13 05:26:33 +0000 | [diff] [blame] | 368 | |
Raymond Hettinger | 234fb2d | 2014-05-11 14:21:23 -0700 | [diff] [blame] | 369 | if (PyList_GET_SIZE(heap) < 1) { |
| 370 | PyErr_SetString(PyExc_IndexError, "index out of range"); |
| 371 | return NULL; |
| 372 | } |
Raymond Hettinger | 2e3dfaf | 2004-06-13 05:26:33 +0000 | [diff] [blame] | 373 | |
Raymond Hettinger | 234fb2d | 2014-05-11 14:21:23 -0700 | [diff] [blame] | 374 | returnitem = PyList_GET_ITEM(heap, 0); |
| 375 | Py_INCREF(item); |
| 376 | PyList_SET_ITEM(heap, 0, item); |
| 377 | if (_siftupmax((PyListObject *)heap, 0) == -1) { |
| 378 | Py_DECREF(returnitem); |
| 379 | return NULL; |
| 380 | } |
| 381 | return returnitem; |
Raymond Hettinger | 2e3dfaf | 2004-06-13 05:26:33 +0000 | [diff] [blame] | 382 | } |
| 383 | |
Raymond Hettinger | 234fb2d | 2014-05-11 14:21:23 -0700 | [diff] [blame] | 384 | PyDoc_STRVAR(heapreplace_max_doc, "Maxheap variant of heapreplace"); |
Raymond Hettinger | 2e3dfaf | 2004-06-13 05:26:33 +0000 | [diff] [blame] | 385 | |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 386 | static PyMethodDef heapq_methods[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 387 | {"heappush", (PyCFunction)heappush, |
| 388 | METH_VARARGS, heappush_doc}, |
| 389 | {"heappushpop", (PyCFunction)heappushpop, |
| 390 | METH_VARARGS, heappushpop_doc}, |
| 391 | {"heappop", (PyCFunction)heappop, |
| 392 | METH_O, heappop_doc}, |
| 393 | {"heapreplace", (PyCFunction)heapreplace, |
| 394 | METH_VARARGS, heapreplace_doc}, |
| 395 | {"heapify", (PyCFunction)heapify, |
| 396 | METH_O, heapify_doc}, |
Raymond Hettinger | 234fb2d | 2014-05-11 14:21:23 -0700 | [diff] [blame] | 397 | {"_heapreplace_max",(PyCFunction)_heapreplace_max, |
| 398 | METH_VARARGS, heapreplace_max_doc}, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 399 | {NULL, NULL} /* sentinel */ |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 400 | }; |
| 401 | |
| 402 | PyDoc_STRVAR(module_doc, |
| 403 | "Heap queue algorithm (a.k.a. priority queue).\n\ |
| 404 | \n\ |
| 405 | Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for\n\ |
| 406 | all k, counting elements from 0. For the sake of comparison,\n\ |
| 407 | non-existing elements are considered to be infinite. The interesting\n\ |
| 408 | property of a heap is that a[0] is always its smallest element.\n\ |
| 409 | \n\ |
| 410 | Usage:\n\ |
| 411 | \n\ |
| 412 | heap = [] # creates an empty heap\n\ |
| 413 | heappush(heap, item) # pushes a new item on the heap\n\ |
| 414 | item = heappop(heap) # pops the smallest item from the heap\n\ |
| 415 | item = heap[0] # smallest item on the heap without popping it\n\ |
| 416 | heapify(x) # transforms list into a heap, in-place, in linear time\n\ |
| 417 | item = heapreplace(heap, item) # pops and returns smallest item, and adds\n\ |
| 418 | # new item; the heap size is unchanged\n\ |
| 419 | \n\ |
| 420 | Our API differs from textbook heap algorithms as follows:\n\ |
| 421 | \n\ |
| 422 | - We use 0-based indexing. This makes the relationship between the\n\ |
| 423 | index for a node and the indexes for its children slightly less\n\ |
| 424 | obvious, but is more suitable since Python uses 0-based indexing.\n\ |
| 425 | \n\ |
| 426 | - Our heappop() method returns the smallest item, not the largest.\n\ |
| 427 | \n\ |
| 428 | These two make it possible to view the heap as a regular Python list\n\ |
| 429 | without surprises: heap[0] is the smallest item, and heap.sort()\n\ |
| 430 | maintains the heap invariant!\n"); |
| 431 | |
| 432 | |
| 433 | PyDoc_STRVAR(__about__, |
| 434 | "Heap queues\n\ |
| 435 | \n\ |
Neal Norwitz | c1786ea | 2007-08-23 23:58:43 +0000 | [diff] [blame] | 436 | [explanation by Fran\xc3\xa7ois Pinard]\n\ |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 437 | \n\ |
| 438 | Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for\n\ |
| 439 | all k, counting elements from 0. For the sake of comparison,\n\ |
| 440 | non-existing elements are considered to be infinite. The interesting\n\ |
| 441 | property of a heap is that a[0] is always its smallest element.\n" |
| 442 | "\n\ |
| 443 | The strange invariant above is meant to be an efficient memory\n\ |
| 444 | representation for a tournament. The numbers below are `k', not a[k]:\n\ |
| 445 | \n\ |
| 446 | 0\n\ |
| 447 | \n\ |
| 448 | 1 2\n\ |
| 449 | \n\ |
| 450 | 3 4 5 6\n\ |
| 451 | \n\ |
| 452 | 7 8 9 10 11 12 13 14\n\ |
| 453 | \n\ |
| 454 | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30\n\ |
| 455 | \n\ |
| 456 | \n\ |
| 457 | In the tree above, each cell `k' is topping `2*k+1' and `2*k+2'. In\n\ |
| 458 | an usual binary tournament we see in sports, each cell is the winner\n\ |
| 459 | over the two cells it tops, and we can trace the winner down the tree\n\ |
| 460 | to see all opponents s/he had. However, in many computer applications\n\ |
| 461 | of such tournaments, we do not need to trace the history of a winner.\n\ |
| 462 | To be more memory efficient, when a winner is promoted, we try to\n\ |
| 463 | replace it by something else at a lower level, and the rule becomes\n\ |
| 464 | that a cell and the two cells it tops contain three different items,\n\ |
| 465 | but the top cell \"wins\" over the two topped cells.\n" |
| 466 | "\n\ |
| 467 | If this heap invariant is protected at all time, index 0 is clearly\n\ |
| 468 | the overall winner. The simplest algorithmic way to remove it and\n\ |
| 469 | find the \"next\" winner is to move some loser (let's say cell 30 in the\n\ |
| 470 | diagram above) into the 0 position, and then percolate this new 0 down\n\ |
| 471 | the tree, exchanging values, until the invariant is re-established.\n\ |
| 472 | This is clearly logarithmic on the total number of items in the tree.\n\ |
| 473 | By iterating over all items, you get an O(n ln n) sort.\n" |
| 474 | "\n\ |
| 475 | A nice feature of this sort is that you can efficiently insert new\n\ |
| 476 | items while the sort is going on, provided that the inserted items are\n\ |
| 477 | not \"better\" than the last 0'th element you extracted. This is\n\ |
| 478 | especially useful in simulation contexts, where the tree holds all\n\ |
| 479 | incoming events, and the \"win\" condition means the smallest scheduled\n\ |
| 480 | time. When an event schedule other events for execution, they are\n\ |
| 481 | scheduled into the future, so they can easily go into the heap. So, a\n\ |
| 482 | heap is a good structure for implementing schedulers (this is what I\n\ |
| 483 | used for my MIDI sequencer :-).\n" |
| 484 | "\n\ |
| 485 | Various structures for implementing schedulers have been extensively\n\ |
| 486 | studied, and heaps are good for this, as they are reasonably speedy,\n\ |
| 487 | the speed is almost constant, and the worst case is not much different\n\ |
| 488 | than the average case. However, there are other representations which\n\ |
| 489 | are more efficient overall, yet the worst cases might be terrible.\n" |
| 490 | "\n\ |
| 491 | Heaps are also very useful in big disk sorts. You most probably all\n\ |
| 492 | know that a big sort implies producing \"runs\" (which are pre-sorted\n\ |
| 493 | sequences, which size is usually related to the amount of CPU memory),\n\ |
| 494 | followed by a merging passes for these runs, which merging is often\n\ |
| 495 | very cleverly organised[1]. It is very important that the initial\n\ |
| 496 | sort produces the longest runs possible. Tournaments are a good way\n\ |
| 497 | to that. If, using all the memory available to hold a tournament, you\n\ |
| 498 | replace and percolate items that happen to fit the current run, you'll\n\ |
| 499 | produce runs which are twice the size of the memory for random input,\n\ |
| 500 | and much better for input fuzzily ordered.\n" |
| 501 | "\n\ |
| 502 | Moreover, if you output the 0'th item on disk and get an input which\n\ |
| 503 | may not fit in the current tournament (because the value \"wins\" over\n\ |
| 504 | the last output value), it cannot fit in the heap, so the size of the\n\ |
| 505 | heap decreases. The freed memory could be cleverly reused immediately\n\ |
| 506 | for progressively building a second heap, which grows at exactly the\n\ |
| 507 | same rate the first heap is melting. When the first heap completely\n\ |
| 508 | vanishes, you switch heaps and start a new run. Clever and quite\n\ |
| 509 | effective!\n\ |
| 510 | \n\ |
| 511 | In a word, heaps are useful memory structures to know. I use them in\n\ |
| 512 | a few applications, and I think it is good to keep a `heap' module\n\ |
| 513 | around. :-)\n" |
| 514 | "\n\ |
| 515 | --------------------\n\ |
| 516 | [1] The disk balancing algorithms which are current, nowadays, are\n\ |
| 517 | more annoying than clever, and this is a consequence of the seeking\n\ |
| 518 | capabilities of the disks. On devices which cannot seek, like big\n\ |
| 519 | tape drives, the story was quite different, and one had to be very\n\ |
| 520 | clever to ensure (far in advance) that each tape movement will be the\n\ |
| 521 | most effective possible (that is, will best participate at\n\ |
| 522 | \"progressing\" the merge). Some tapes were even able to read\n\ |
| 523 | backwards, and this was also used to avoid the rewinding time.\n\ |
| 524 | Believe me, real good tape sorts were quite spectacular to watch!\n\ |
| 525 | From all times, sorting has always been a Great Art! :-)\n"); |
| 526 | |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 527 | |
| 528 | static struct PyModuleDef _heapqmodule = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 529 | PyModuleDef_HEAD_INIT, |
| 530 | "_heapq", |
| 531 | module_doc, |
| 532 | -1, |
| 533 | heapq_methods, |
| 534 | NULL, |
| 535 | NULL, |
| 536 | NULL, |
| 537 | NULL |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 538 | }; |
| 539 | |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 540 | PyMODINIT_FUNC |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 541 | PyInit__heapq(void) |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 542 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 543 | PyObject *m, *about; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 544 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 545 | m = PyModule_Create(&_heapqmodule); |
| 546 | if (m == NULL) |
| 547 | return NULL; |
| 548 | about = PyUnicode_DecodeUTF8(__about__, strlen(__about__), NULL); |
| 549 | PyModule_AddObject(m, "__about__", about); |
| 550 | return m; |
Raymond Hettinger | c46cb2a | 2004-04-19 19:06:21 +0000 | [diff] [blame] | 551 | } |
| 552 | |