show/hide this revision's text 2 correct

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?

If you just want to get a one-time sorted list, use:

myList.sort()

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) n), gets are O(1), and removals are O(1)O(lg n), which is a lot better than just resorting the entire list over and over again.

show/hide this revision's text 1
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?

If you just want to get a one-time sorted list, use:

myList.sort()

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) and removals are O(1), which is a lot better than just resorting the entire list over and over again.