Heap sort

Heap sort is a comparison-based sorting technique based on Binary Heap data structure. It is similar to the selection sort where we first find the minimum element and place the minimum element at the beginning. Repeat the same process for the remaining elements.

Working of Heap Sort algorithm:

To understand heap sort more clearly, let’s take an unsorted array and try to sort it using heap sort. Consider the array: arr[] = {4, 10, 3, 5, 1}.

Build Complete Binary Tree: Build a complete binary tree from the array.

Build complete binary tree from the array

Transform into max heap: After that, the task is to construct a tree from that unsorted array and try to convert it into max heap.

  • To transform a heap into a max-heap, the parent node should always be greater than or equal to the child nodes
    • Here, in this example, as the parent node 4 is smaller than the child node 10, thus, swap them to build a max-heap.
  • Transform it into a max heap

 

  • Now, as seen, 4 as a parent is smaller than the child 5, thus swap both of these again and the resulted heap and array should be like this:

Make the tree a max heap

Perform heap sort: Remove the maximum element in each step (i.e., move it to the end position and remove that) and then consider the remaining elements and transform it into a max heap.

  • Delete the root element (10) from the max heap. In order to delete this node, try to swap it with the last node, i.e. (1). After removing the root element, again heapify it to convert it into max heap.
    • Resulted heap and array should look like this:

Remove 10 and perform heapify

  • Repeat the above steps and it will look like the following:

Remove 5 and perform heapify

  • Now remove the root (i.e. 3) again and perform heapify.

Remove 4 and perform heapify

  • Now when the root is removed once again it is sorted. and the sorted array will be like arr[] = {1, 3, 4, 5, 10}.

The sorted array

Introduction to Sorting Techniques – Data Structure and Algorithm Tutorials

Sorting refers to rearrangement of a given array or list of elements according to a comparison operator on the elements. The comparison operator is used to decide the new order of elements in the respective data structure.

When we have a large amount of data, it can be difficult to deal with it, especially when it is arranged randomly. When this happens, sorting that data becomes crucial. It is necessary to sort data in order to make searching easier.

Similar Reads

Types of Sorting Techniques

There are various sorting algorithms are used in data structures. The following two types of sorting algorithms can be broadly classified:...

Why Sorting Algorithms are Important

The sorting algorithm is important in Computer Science because it reduces the complexity of a problem. There is a wide range of applications for these algorithms, including searching algorithms, database algorithms, divide and conquer methods, and data structure algorithms....

Some of the most common sorting algorithms are:

Below are some of the most common sorting algorithms:...

1. Selection sort

Selection sort is another sorting technique in which we find the minimum element in every iteration and place it in the array beginning from the first index. Thus, a selection sort also gets divided into a sorted and unsorted subarray....

2. Bubble sort

Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are in the wrong order. This algorithm is not suitable for large data sets as its average and worst-case time complexity is quite high....

3. Insertion Sort

Insertion sort is a simple sorting algorithm that works similarly to the way you sort playing cards in your hands. The array is virtually split into a sorted and an unsorted part. Values from the unsorted part are picked and placed at the correct position in the sorted part....

4. Merge Sort

The Merge Sort algorithm is a sorting algorithm that is based on the Divide and Conquers paradigm. In this algorithm, the array is initially divided into two equal halves and then they are combined in a sorted manner....

5. Quick sort

Quicksort is a sorting algorithm based on the divide and conquer approach where an array is divided into subarrays by selecting a pivot element (element selected from the array)....

6. Heap sort

Heap sort is a comparison-based sorting technique based on Binary Heap data structure. It is similar to the selection sort where we first find the minimum element and place the minimum element at the beginning. Repeat the same process for the remaining elements....

7. Counting sort

Counting sort is a sorting technique based on keys between a specific range. It works by counting the number of objects having distinct key values (kind of hashing). Then do some arithmetic to calculate the position of each object in the output sequence....

Some other Sorting algorithms:

1. Radix sort...

Comparison of Complexity Analysis Between Sorting Algorithms:

NameBest Case  Average Case  Worst Case MemoryStable   Method UsedQuick Sort[Tex]n log n[/Tex][Tex]n log n[/Tex][Tex]n^{2}[/Tex][Tex]log n[/Tex]NoPartitioningMerge Sort[Tex]n log n[/Tex][Tex]n log n[/Tex][Tex]n log n[/Tex]nYesMergingHeap Sort[Tex]n log n[/Tex][Tex]n log n[/Tex][Tex]n log n[/Tex]1NoSelectionInsertion Sortn[Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]1YesInsertionTim Sortn[Tex]n log n[/Tex][Tex]n log n[/Tex]nYesInsertion & MergingSelection Sort[Tex]n^{2}[/Tex][Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]1NoSelectionShell Sort[Tex]n log n[/Tex][Tex]n^{4/3}[/Tex][Tex]n^{3/2}[/Tex]1NoInsertionBubble Sortn[Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]1YesExchangingTree Sort[Tex]n log n[/Tex][Tex]n log n[/Tex][Tex]n log n[/Tex]nYesInsertionCycle Sort[Tex]n^{2}[/Tex][Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]1NoSelectionStrand Sortn[Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]nYesSelectionCocktail Shaker Sortn[Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]1YesExchangingComb Sort[Tex]n log n[/Tex][Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]1NoExchangingGnome Sortn[Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]1YesExchangingOdd–even Sortn[Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]1YesExchanging...

Contact Us