×

Heapsort

Sorting algorithm
In computer science, heapsort is a comparison-based sorting algorithm which can be thought of as "an implementation of selection sort using the right data structure." Wikipedia
Worst-case complexity: n*log(n)
Stable: No
Best complexity: n*log(n)