Heap Sort

00:00
MediumSortingHeapArray
AmazonMicrosoft

Sort array using heap sort. Build a max-heap, then repeatedly extract maximum element to end of array.

Examples

Input → [12,11,13,5,6,7]
Output → [5,6,7,11,12,13]
Input → [1]
Output → [1]
Input → [3,1,2]
Output → [1,2,3]