I am trying to compare the implementing a binary heap using an array and linked lists. I think arrays are better in every way because all operations can be done faster than or equal to the operations using a linked list. It also needs less memory.
But are there any reasons why using linked lists are better than arrays for binary heaps?