Is it possible to use insertion sort in a heapsort to replace its swap or exchange method?
Typically swap requres 3 steps at minimum:
temp = a
a = b
b = temp
A friend of mine said that it's possible to use insertion sort to reduce the swap to one operation instead of three. Is it?