Sorting Algorithms

Sorting Algorithms

This article gives provides an overview on sorting algorithms and how to classify them.

Algorithms existed long before computers existed. An algorithm is a process or set of rules to be followed in calculations or other problem solving operations, especially by a computer. So it makes sense that ever since we got computers, there are now much more algorithms. Algorithms is at the heart of computing.

Sorting algorithms is a process of organising a collection of data in an ascending or descending order. Sorting algorithms can be used as standalone algorithms or as part of other algorithms like search algorithms. The binary search algorithm is a very efficient way to search large collections of data. Sorting is a pre-requisite for most searching algorithms.

Why Study Sorting Algorithms?

The question always come up, why do we study sorting algorithms and why even care? The sorting algorithms are all very different to each other but with the same pre- and post-conditions. There are many ways to implement an algorithm to sort an array of integer values where the pre-condition and the post-conditions will be the exact same, but the behaviour and complexity of the algorithm is different. We would like to have a way to measure an algorithm to determine which is a good algorithm and which is best.

Classification

Internal vs. External Sorting

Sorting algorithms can be classified into two types of algorithms: internal and external. Internal sorting algorithms require the full data set to fit into main memory whereas external sort is used when the full data set does not fit and have to reside on external storage during the sorting process.

Stable vs. Unstable Sorting

A stable sorting algorithm is when two objects with equal keys appear in the same order in the unsorted input array and the sorted output array. Examples of stable sorting algorithms are Insertion sort, Merge Sort and Bubble Sort.

An unstable sorting algorithm is when two objects with equal keys doesn’t appear in the same order in the unsorted input array and the sorted output array. Examples of unstable sorting algorithms are Heap Sort and Quick Sort.

Time vs. Space Complexity

Time Complexity is the computational complexity that describes the amount of time it takes to run an algorithm.

Space Complexity is the computational complexity that describes the amount of memory space required by an algorithm.

In-place vs. Out-of-place Algorithm

An in-place algorithm is an algorithm which transforms input using no auxiliary data structure. The input is usually overwritten by the output as the algorithm executes. In-place algorithm updates input sequence only through replacement or swapping of elements.

An algorithm which is not in-place is sometimes called not-in-place or out-of-place.

List of Sort Algorithms

The following algorithms are examples of internal sorting algorithms:

Algorithm NameTime Complexity: BestTime Complexity: AverageTime Complexity: WorstSpace Complexity: Worst
Bubble SortΩ(n)Θ(n2)O(n2)O(1)
Bucket SortΩ(n+k)Θ(n+k)O(n2)O(n)
Counting SortΩ(n+k)Θ(n+k)O(n+k)O(k)
Cube SortΩ(n)Θ(n log(n))O(n log(n))O(n)
HeapsortΩ(n log(n))Θ(n log(n))O(n log(n))O(1)
Insertion SortΩ(n)Θ(n2)O(n2)O(1)
Merge SortΩ(n log(n))Θ(n log(n))O(n log(n))O(n)
Quick SortΩ(n log(n))Θ(n log(n))O(n2)O(n log(n))
Radix SortΩ(nk)Θ(nk)O(nk)O(n+k)
Selection SortΩ(n2)Θ(n2)O(n2)O(1)
Shell SortΩ(n log(n))Θ(n log2n)O(n2)O(1)
TimsortΩ(n)Θ(n log(n))Θ(n log(n))O(n)
Tree SortΩ(n log(n))Θ(n log(n))O(n2)O(n)

Sorting Algorithms and computational complexity

Finally

Sorting algorithms are common in introductory computer science classes. Sorting Algorithms provides an introduction to core algorithms concepts such as Big O notation, data structures and understanding algorithm complexity in context of time and space.