Last updated
Was this helpful?
Last updated
Was this helpful?
Optimization progress:
Regular sorting: O(NlogN)
Priority Queue: O(NlogK)
QuickSelect: O(N) average with shuffle. still O(N^2) in worst case though.
Bucket sort: O(N)
.
:
Explain: https://www.youtube.com/watch?v=A1iwzSew5QY
Array
represent a heap
(Complete Binary Tree) : root i, left 2i+1, right 2i+2;
heapify
the heap, make it maxHeap
swap root and last one, therefore 'remove' largest to the array tail
heapify
the rest
merge sort:
selection sort:
counting sort:
partition sort: part of Quick Sort,