Heap Sort Algorithm

Gorav Singal

July 03, 2019

TL;DR

Build a max-heap, swap root (max) with last element, shrink heap, heapify. Repeat until sorted. O(n log n) time, in-place.

Heap Sort Algorithm

This is another very useful sorting algorithm based on Heap data structure. Read more about Heap Data Structure

In this algorithn, we first prepare heap which satisfies max-heap property. Once we get out max heap ready. We get maximum element at the top. We swap this element with the last index element. And, reduce heapsize by one. Now, since we have put a newer element on top. We will just run max_heapify() algorithm on this array with new heapsize.

Finally we get the sorted array.

Heap Sort Algorithm

  • Build a max heap (using max_heapify())
  • In a loop starting from last index
    • swap 0-index value with current index value (which is the last index in our heap)
    • reduce heap size by one. Means, largest element is done. Lets work on remaining array.
    • Run max_heapify() on 0-index

See the code here:

public class HeapSort {
	private int[] arr;
	private int heapsize;

	public HeapSort(int[] arr) {
		this.arr = arr;
		this.heapsize = this.arr.length;
	}
	
	private int getLeftChild(int index) {
		return (index * 2) + 1;
	}
	private int getRightChild(int index) {
		return (index * 2) + 2;
	}
	
	private void max_heapify(int index) {
		int l = this.getLeftChild(index);
		int r = this.getRightChild(index);
		
		int indexOfLargest = index;
		if (l < this.heapsize && this.arr[l] > this.arr[index]) {
			indexOfLargest = l;
		}

		if (r < this.heapsize && this.arr[r] > this.arr[indexOfLargest]) {
			indexOfLargest = r;
		}
		
		if (indexOfLargest != index) {
			ArrayUtils.swap(this.arr, index, indexOfLargest);
			this.max_heapify(indexOfLargest);
		}
	}
	
	private void buildMaxHeap() {
		for (int i=this.heapsize/2; i>=0; i--) {
			this.max_heapify(i);
		}
	}
	
	public void doHeapSort() {
		this.buildMaxHeap();
		int l = this.arr.length;
		for (int i=l-1; i>0; i--){
			ArrayUtils.swap(this.arr, 0, i);
			this.heapsize--;
			
			this.max_heapify(0);
		}
	}
}

Graphical Example

Heap Sort Example

Key Points

  • This is an in-place algorithm.
  • Uses Heap data structure
  • Performance is very good. its complexity is O(n log n)

Runtime complexity

The algorithm runs on O(n log n) in worst/average case.

Share

Related Posts

Radix Sort Algorithm

Radix Sort Algorithm

A number consists of digits. Example: 843. Its a 3-digit number. Radix sort…

Counting Sort Algorithm

Counting Sort Algorithm

Counting sort runs on relatively smaller set of input. Counting sort calculates…

Quick Sort Algorithm

Quick Sort Algorithm

This algorithm is very useful for large input. And, is quite efficient one. It…

Merge Sort Algorithm

Merge Sort Algorithm

This algorithm is very efficient one, and is classic example of Divide and…

Bubble Sort Algorithm

Bubble Sort Algorithm

This is kind of preliminary technique of sorting. And, this is the first…

Selection Sort Algorithm

Selection Sort Algorithm

It is one of a simple algorithm to study for a beginner to understanding sorting…

Latest Posts

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI video generation went from “cool demo” to “usable in production” in 2024-202…

AI Models in 2025 — Cost, Capabilities, and Which One to Use

AI Models in 2025 — Cost, Capabilities, and Which One to Use

Choosing the right AI model is one of the most impactful decisions you’ll make…

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

Generating one image with AI costs between $0.002 and $0.12. That might sound…

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

Two years ago, AI coding meant one thing: GitHub Copilot autocompleting your…

AI Agents Demystified — It's Just Automation With a Better Brain

AI Agents Demystified — It's Just Automation With a Better Brain

Let’s cut through the noise. If you read Twitter or LinkedIn, you’d think “AI…

Supply Chain Security — Protecting Your Software Pipeline

Supply Chain Security — Protecting Your Software Pipeline

In 2024, a single malicious contributor nearly compromised every Linux system on…