When to use which Sorting Algorithm

Kaustubh Dwivedi
6 min readDec 22, 2021

--

Choosing the suitable sorting algorithm is not an easy task. Here in this story I will be discussing about various scenarios in which we should use different sorting algorithms. I have tried to discuss the few important points of use case of different sorting algorithms in a nutshell. I have assumed that you have a basic knowledge of how these algorithms work.

So without any more talk let’s get started :-)

Selection Sort

  • When the memory writing is an expensive operation.
  • When there is constraint on memory usage.
  • When the array size is relatively small.
  • When the time constraint is not an issue.
  • When the array is unsorted fully (not partially sorted).

Reason : Lets see why is it so. first of all the main reason of the the above reasons is the time complexity of O(n²) which makes it inefficient on large lists, and generally performs worse than the insertion sort. So its is suitable for smaller size arrays. Moreover the maximum number of swaps are n-1 which is useful when memory writing is costly. It is better than insertion sort in terms of memory writing operations. Moreover as it is quadratic sorting algorithm and is greatly outperformed by Algorithms having less time complexities like merge sort or heaps sort.

Bubble Sort

  • When a very simple and easy to implement sorting algorithm is desired.
  • When we need stable sorting (maintaining relative order) is desired.
  • When array size is relatively small.
  • When the array is partially sorted (semi sorted).
  • When time constraint is not a big issue.

Reason : As it is also a quadratic sorting algorithm, having time complexity of O(n²) so this is also implemented when time is not a big issue. Moreover as it checks and swaps adjacent elements always so the relative order of array elements is always preserved making it a stable algorithm as compared to the previous one like Selection sort. Also as it swaps adjacent pairs so maximum number of swaps are n*(n-1)/2 which is the reason why it works better in case of partially sorted arrays due to lesser number of swpas required/

Insertion Sort

  • When data is already sorted (or nearly sorted).
  • When space efficiency is preferred over time.
  • When stable sorting is required (relative order is important).
  • When the dataset to be operated is of small size.
  • When in-place algorithm is needed.

Reason : This is the third sorting algorithm in the category of quadratic sorting algorithm, having time complexity of O(n²). Insertion sort is the meither main choice when the data is nearly sorted (because it is more adaptive) or when the data/array size is small (because it has low overhead). For these reasons, and because moreover it is also stable, it is mostly used as the recursive base case (when the problem size is small) for higher overhead divide-and-conquer sorting algorithms, such as merge sort or quick sort.

Merge Sort

  • When the dataset to be sorted is large (also useful in Linked List sorting).
  • When we need a faster algorithm (time is a major constraint).
  • When memory overhead is not a big issue.
  • When stability of data is needed with faster implementation.
  • When External Sorting method with poor locality of reference is not an issue.

Reason : One of the most famous sorting algorithm and my favorite. It has a time complexity of O(n log n) making it much faster then the above three sorting algorithms. It uses a divide and conquer strategy and hence therefore requires extra space to be implemented. It also produces a stable algorithm. Due to divide and conquer strategy it is an optimum algorithm for sorting Linked List data structure. Due to its lower time complexity and simple divide and conquer algorithm its mostly applicable in all types of datasets.

Quick Sort

  • When we need a faster sorting algorithm with good locality of reference.
  • When Internal sorting method is preferred.
  • When extra memory is a constraint.
  • When the dataset size is not very big.
  • When stability is not an issue (relative order not important).

Reason : It is similar algorithm to Merge Sort having divide and conquer approach. When implemented well it can be even faster than Merge sort and a lot faster than Heap sort. But in worst cast its time complexity becomes quadratic and it can perform worse than Merge Sort. That’s why its not much frequently used. As it is in-place sorting algorithm like insertion sort but also with less time like Merge sort hence it is used along with merge sort in implementing Library Sorting functions of various languages. It has better locality of reference than its neighbors Merge sort and Heap sort.

Heap Sort

  • When we need extreme elements very fast.
  • When we need a partially sorted array (if execution stopped abruptly).
  • When we need to avoid quicksort worst case.
  • When stability is not an issue (relative order not important).
  • When memory complexity (extra space) is an issue.

Reason : Its main competitor is the quicksort algorithm discussed above. Heapsort’s primary advantages are its simple, non-recursive code, minimal auxiliary storage requirement, and reliably good performance: its best and worst cases are within a small constant factor of each other. This algorithm cannot do better than O(n log n) for pre-sorted inputs, but it does not suffer from quicksort’s O(n2) worst case which makes its implementation a little tricky. Due its poor locality of reference not much famous. As it use the property of heaps to sort elements so getting extreme elements is very easy.

Count Sort

  • When the difference between various keys are not very big (less than total items).
  • When a very fast sorting algorithm is need (linear running time).
  • When overhead space is not an big issue.
  • When the keys are relatively small numbers.
  • When stability of data is needed with faster implementation.

Reason : This sorting technique is based on key of specific range. Mainly it functions by counting the distinct number of objects like in maps. So if we use very big keys the space complexity can increase to large extent. The small keys help to count the numbers more efficiently which in turns help increase the sorting speed and reduce space complexity. Its time complexity is of the order O(n+k) where n number of elements and k is the range. So if the range is small with small keys the running times becomes linear making it very fast sorting algorithm.

Radix Sort

  • When the biggest integer is shorter than array size.
  • When we have fixed range of integers.
  • When numbers are not much repeated but their length have same range.
  • When stability of data is needed with faster implementation.
  • When in comparison predicates are needed for sorting.

Reason : Radix sort is one of the unique sorting algorithm as here the time complexity depends upon the number of digits also along with number of elements in the list. Generalization of this algorithm is tough then the other sorting algorithms there as it requires fixed size keys, and some very specific way of breaking the keys into pieces.

Bucket Sort

  • When the range is much distributed and instead of limited range we have discrete elements .
  • When faster implementation is not the top most priority.
  • When space overhead is an issue.
  • When the elements have a very little variation.
  • When we need a stable sorting algorithm.

Reason : It follows the scatter gather approach. So it performs good when array is of small size and has fixed range of integers. As the overall performance depends on the bucket size chosen it is heavily dependable upon the user and so not much used in everyday algorithms. If the range is much distributed then the bucket sort can help as it will be easy to divide elements in various buckets.

Table showing Comparison b/w Time Complexities of Various Sorting Algorithms

Reference: Big-O Algorithm Complexity Cheat Sheet (Know Thy Complexities!) @ericdrowell (bigocheatsheet.com)

References :

Counting Sort vs Radix Sort vs Bucket Sort (opengenus.org)
Analysis of different sorting techniques — GeeksforGeeks
Quick Sort , Merge Sort , Heap Sort (slideshare.net)
Comparison of Quadratic Run time Sorting Algorithm · WorldKosh
Quadratic and Linearithmic Comparison-based Sorting Algorithms | John Deringer (wordpress.com)

--

--