http://qs321.pair.com?node_id=248332


in reply to Re: Heap sorting in perl
in thread Heap sorting in perl

A heap is a specialized datastructure that can be thought of as an "automatically sorted array" given a somewhat scaled down definition of "sorted". Sorted in this case means that the largest element is always easy to find and remove, and inserting new elements is also easy.

Given that, our steps to find the smallest M elements would be:

  1. Build a heap from our first M items
  2. Compare next item to largest element in heap
  3. Replace largest with new if new < largest
  4. Repeat steps 2 and 3 for all remaining items

As you can see, this is very similar to the strategy you proposed. In fact, you could view heaps as a datastructure designed specifically to implement this algorithm efficiently.

-Blake