Heap sort can be implemented using linked list and arrays.
What would be the ideal method of doing it-using linked list or arrays?
What is the time complexity to build heap using arrays and linked lists?Is it O(nlogn) for both?
What is the time complexity for deletion?