Does Python's heapify() not play well with list comprehension and slicing? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T14:17:46Zhttp://stackoverflow.com/feeds/question/1046683http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1046683/does-pythons-heapify-not-play-well-with-list-comprehension-and-slicing1Does Python's heapify() not play well with list comprehension and slicing?mettadore2009-06-25T23:21:02Z2009-06-26T04:13:54Z
<p>I found an interesting bug in a program that I implemented somewhat lazily, and wondered if I'm comprehending it correctly. The short version is that <a href="http://docs.python.org/library/heapq.html" rel="nofollow">Python's <code>heapq</code> implementation</a> doesn't actually order a list, it merely groks the list in a heap-centric way. Specifically, I was expecting <code>heapify()</code> to result in an ordered list that facilitated list comprehension in an ordered fashion.</p>
<p>Using a priority cue example, as in the Python documentation:</p>
<pre><code>from heapq import heapify, heappush, heappop
from random import shuffle
class Item(object):
def __init__(self, name):
self.name = name
lst = []
# iterate over a pseudo-random list of unique numbers
for i in sample(range(100), 15):
it = Item("Some name for %i" % i)
heappush(lst, (i, it))
print([i[0] for i in lst])
</code></pre>
<p>Results in </p>
<pre><code>>>> [2, 22, 7, 69, 32, 40, 10, 97, 89, 33, 45, 51, 94, 27, 67]
</code></pre>
<p>This, we note, is not the <em>original</em> ordering of the list, but apparently some heap-centric ordering as <a href="http://docs.python.org/library/heapq.html#theory" rel="nofollow">described here</a>. I was lazily expecting this to be fully ordered.</p>
<p>As a test, running the list through heapify() results in no change (as the list is already heap-ishly ordered):</p>
<pre><code>heapify(lst)
print([i[0] for i in lst])
>>> [2, 22, 7, 69, 32, 40, 10, 97, 89, 33, 45, 51, 94, 27, 67]
</code></pre>
<p>Whereas iterating through the list with the <code>heappop()</code> function results in ordering as expected:</p>
<pre><code>lst2 = []
while lst: lst2.append(heappop(lst))
print([i[0] for i in lst2])
>>> [2, 7, 10, 22, 27, 32, 33, 40, 45, 51, 67, 69, 89, 94, 97]
</code></pre>
<p>So, it would seem that <code>heapq</code> does not order a list (at least in the human sense of the word), but rather the <code>heappush()</code> and <code>heappop()</code> functions are able to grok the heap-ishly ordered list.</p>
<p><strong>The result: Any slicing and list comprehension operations on a heapified list will yield non-ordered results.</strong></p>
<p>Is this true, and is this <em>always</em> true?</p>
<p>(BTW: Python 3.0.1 on a WinXP system)</p>
http://stackoverflow.com/questions/1046683/does-pythons-heapify-not-play-well-with-list-comprehension-and-slicing/1046689#10466895Answer by RichieHindle for Does Python's heapify() not play well with list comprehension and slicing?RichieHindle2009-06-25T23:23:49Z2009-06-25T23:45:17Z<p>A heap is not a sorted list (it's a representation of a partially sorted binary tree).</p>
<p>So yes, you're right, if you expect a heapified list to behave like a sorted list, you'll be disappointed. The only sorting assumption you can make about a heap is that <code>heap[0]</code> is always its smallest element.</p>
<p>(It's difficult to add much to what you've already written - your question is an excellent writeup of How Things Are. 8-)</p>
http://stackoverflow.com/questions/1046683/does-pythons-heapify-not-play-well-with-list-comprehension-and-slicing/1046702#10467020Answer by Matthew Flaschen for Does Python's heapify() not play well with list comprehension and slicing?Matthew Flaschen2009-06-25T23:30:05Z2009-06-25T23:42:13Z<blockquote>
<p>The result: Any slicing and list
comprehension operations on a
heapified list will yield non-ordered
results.</p>
<p>Is this true, and is this always true?</p>
</blockquote>
<p>If you just want to get a one-time sorted list, use:</p>
<pre><code>myList.sort()
</code></pre>
<p>Priority queues/heaps can be used to implement a sort, or they can be used to keep a queue in priority form. Insertions into a heap are O(lg n), gets are O(1), and removals are O(lg n), which is a lot better than just resorting the entire list over and over again.</p>
http://stackoverflow.com/questions/1046683/does-pythons-heapify-not-play-well-with-list-comprehension-and-slicing/1046796#10467960Answer by John Machin for Does Python's heapify() not play well with list comprehension and slicing?John Machin2009-06-26T00:11:15Z2009-06-26T00:11:15Z<p>"""I was expecting heapify() to result in an ordered list that facilitated list comprehension in an ordered fashion.""": If this expectation was based on a reading of the manual, you should raise a docs bug report.</p>
<p>""" The result: Any slicing and list comprehension operations on a heapified list will yield non-ordered results. Is this true, and is this always true?""": Just like e.g. random.shuffle(), the mentioned activity is not defined to produce "ordered" results. It <strong>may</strong> produce "ordered" results occasionally, but this is coincidental and not to be relied on and not worth asking (IMHO).</p>
http://stackoverflow.com/questions/1046683/does-pythons-heapify-not-play-well-with-list-comprehension-and-slicing/1047287#10472870Answer by newacct for Does Python's heapify() not play well with list comprehension and slicing?newacct2009-06-26T04:13:54Z2009-06-26T04:13:54Z<p>" The result: Any slicing and list comprehension operations on a heapified list will yield non-ordered results. Is this true, and is this always true?" No, it is not always true. Although it will be non-ordered most of the time, it is possible for it to be ordered. heapify() produces a list that satisfies the "heap invariant". In this case, it is a min-heap. It turns out that a sorted list also satisfies the heap invariant (see <a href="http://docs.python.org/library/heapq.html" rel="nofollow">heapq</a> paragraph 4: "heap.sort() maintains the heap invariant"). So in theory it is possible that a heapified list will also happen to be sorted.</p>