John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Status: Tags: Links: Binary Heap


Binary Heap Sort

Principles

To sort an array of n elements ?

Algorithm

Phase 1 ?

Phase 2 ? heap is unsorted section of array

  1. set counter unsorted to n
    • unsorted = size of binary heap
  2. store last element of heap into temp storage lastElement
  3. move root to last position in binary heap
  4. decrease counter unsorted to exclude the last entry from further sorting (becomes first element in sorted section of array)
  5. Insert last element into root (position now available)
  6. reHeapDown(indexOfRoot) between positions 0 and unsorted - 1
  7. Repeat steps 2 to 6 until unsorted is 1

Time Complexity

Worst case ?

Space Complexity

?


References:

Created:: 2022-03-17 22:15


Interactive Graph