Heap Sort: The Binary Heap Example

A visual representation of the heap sort algorithm, because you asked for it.

See the animation, if you must.

A binary heap, because you asked

Heap Sort Example: Because you asked.

Heapify, it's not just for heaping.

In this example, the binary heap is represented as a tree with the highest value at the root. When the root has children, it is removed and its children become the new root, until the tree is empty. The values are then sorted by following the path of their parent nodes.

That's all for now, folks.

More Binary Heap Sort Videos