Heap sort algorithm in C

Jyothi
Dec 21, 2021

--

This story shows the Heap sort program in C:

Below is the heapify function:

heapify

Below code segment shows the heap sort and build_heap functions:

heapsort

Can we write this with no recursions? Suppose if the given data is in decreasing order, stack space will be so high I feel.

--

--

No responses yet