Sorting AlgorithmsAdvanced

Heap Sort

Uses a binary heap data structure by first building a max heap, then repeatedly extracting the root element to sort. Guarantees O(n log n) time complexity in all cases without requiring extra memory. Also serves as the foundation for priority queue implementations.

#sorting#heap#in-place#comparison-based

Complexity Analysis

Time (Average)

O(n log n)

Expected case performance

Space

O(1)

Memory requirements

Time (Best)

O(n log n)

Best case performance

Time (Worst)

O(n log n)

Worst case performance

📚 CLRS Reference

Introduction to AlgorithmsChapter 6Section 6.4

Step: 1 / 0
500ms
SlowFast
Keyboard Shortcuts
Space Play/Pause StepR Reset1-4 Speed

Real-time Statistics

Algorithm Performance Metrics

Progress0%
Comparisons
0
Swaps
0
Array Accesses
0
Steps
1/ 0

Algorithm Visualization

Step 1 of 0

Initialize array to begin

Default
Comparing
Swapped
Sorted

Code Execution

Currently executing
Previously executed

Implementation

Heap Sort - Algorithm Vision