I need to implement a Heap data structure in C. While I was doing some research, I see people using buildHeap(), constructHeap() to convert an array into a heap. My question is, instead of implementing those functions, can I just call percolateDown() on the newly added item every time I need to add to the heap?
Thanks!