Skip to content

Latest commit

 

History

History
3 lines (3 loc) · 283 Bytes

Readme.md

File metadata and controls

3 lines (3 loc) · 283 Bytes

Heap Sort

Heap sort is a selection based algorithm. It has an ideia similar to Selection Sort. However, instead o search the element in a list (or array), the Heap Sort search the elements in a balanced tree computed as a Heap. The time complexiy of Heap Sort is allways O(nlogn).