1. Overview

In this tutorial, we’ll discuss various sorting algorithms and the purpose of using them in a particular circumstance. Though sorting algorithms have a general aim of sorting, each has its own disadvantages and advantages. Some algorithms overcame the issues that prevailed in the existing ones.

The problems are based on the additional space required, time complexity, and the ability to handle complex or huge data. An algorithm is applied in each case based on how it deals with a data structure such as arrays, linked lists, stack, or queues. Typical applications are e-commerce, database management systems, or graph traversal.

2. Sorting Algorithms

Sorting is the process of arranging the elements in order (usually ascending). Applications that have to search a particular element require organized data. In this section, we’ll see the various sorting algorithms and their complexities.

2.1. Merge Sort

Merge sort, invented by John Von Neumann, follows the divide and conquer method to sort the n number of elements. Firstly, the values go through iterative splitting into equal-sized groups (each group at that iteration containing \frac{n}{2} elements) until each group has a single value. Then the elements merge in a reverse manner to the splitting process.  Merging gradually sorts the data in that merged group for every iteration. Finally, producing a set of sorted elements:

merge 3

 

Merge sort is suitable for data structures that are accessed in series. Tape drives are the best example where the CPU has access to the data in sequential order. It is also used in the field of e-commerce to keep track of user interests using inversion.

Merge sort performs the same complete process regardless of the data. Its best, average, and worst-case for time complexity is O(n * log n) where n is the number of elements sorted. The space complexity is O(n) for additional space and O(1) when implemented using linked lists.

The data is copied to a separate list at each iteration. Therefore, it is not preferred for arrays, especially with big datasets. Linked lists are better since insertion does not require extra space.

2.2. Bubble Sort

Bubble sort is one of the simplest sorting algorithms which came into usage by Iverson. It sorts by comparing each pair of adjacent elements and swapping them if they are not in ascending order. The process takes place for various iterations to sort completely. As the iterations proceeds, the list starts falling in order from the last element:

bubble1-2bubble2-2

Smaller lists sort using bubble sort due to its simplicity, where it just takes 2n to complete the sorting. In computer graphics, it is used for the polygon filling algorithm to arrange the coordinates of lines in order.

For a sorted list, the best case for time complexity is O(n). The average and worst-case is O(n*n), where the worst-case situation is the elements in descending order. In the worst-case scenario, the maximum number of pairs swap to reach the end at every iteration. Bubble sort is still used for a basic understanding of the sorting algorithms and smaller element sets.

2.3. Selection Sort

Selection sort is a sorting procedure that proceeds by finding the minimum element and replacing the values. The algorithm starts by comparison from the item at the first location. It is checked with the others to see if a smaller value is present in any other position. If yes, it swaps the elements, making sure to place the smallest number in the first location.

For example, element X at the first location is checked against each element to its right. If X is less than any other element Y, then X remains at that location. Otherwise, X swaps with Y, and now Y is compared with the rest of the elements. This procedure finally gives the sorted order of the elements:

selection-3

The algorithm compares every element for every location, so the time complexity of the selection sort is O(n*n). On the other hand, the space complexity is O(1). It sorts faster in a small set of items. Just like the bubble sort, it’s useful for learning the concept of sorting.

2.4. Quicksort

Quicksort is another sorting method using the divide and conquer technique, developed by Tony Hoare. The algorithm repeatedly splits the elements based on a pivot number chosen (the same position throughout the sorting process). It continually does this to the subgroups until it reaches a group with a single element. The method splits the groups into two subgroups, according to whether they are less or greater than the pivot number:

quick-2

Best and average-case time complexity are O(n * log n). The best case is choosing a pivot number that is the median value every time.

The worst case is when the pivot number selected is the smallest or greatest number every time. This state might happen when the elements are sorted in ascending or descending order. The worst-case time complexity is O(n*n).

The space complexity of this sorting method is O(log n). Even though quicksort doesn’t require much extra space, it isn’t that advisable for a larger dataset.

Quicksort works faster in a virtual environment, where the memory space that’s not part of primary memory yet seems like one while running a process. It suits well for arrays where it’s easier to access elements based on location and doesn’t require extra storage.

2.5. Heapsort

J.W.J. Williams developed the method heapsort, which sorts elements by constructing a binary tree structure. There are two types of tree forms: max-heap tree and min-heap tree. When the parent node is greater than the children node, it is called a max heap tree. When the parent node is less than the children node, then it’s called a min-heap tree.

Heapsort proceeds by three main actions: heapify, swap, and insert.

  • During heapify, the tree is checked after every insertion of a new node whether the tree satisfies max-heap or min-heap tree structure.
  • After the tree is in heap form, the first element swaps with the last bit
  • Finally, it inserts the end element in the updated tree into the sorted output list

These three steps repeatedly continue until the root node is left, inserted into the output list to obtain the sorted elements:

heap-2

Systems that require security and embedded systems use heapsort. Since it generally does the same procedure to sort the elements, its time complexity at all cases is O(n * log n).

Since the space complexity is O(1), it is well recommended for sorting linked lists. The complexity of heapsort increases logarithmically when elements increase, which makes it suitable for huge datasets.

2.6. Insertion Sort

The insertion sort is a simple iterative sorting method introduced by John Mauchly. Insertion sort follows three steps: Compare, Move, and Place.

The insertion sort compares one item with its successor in every iteration and steps are:

  • The element array[a] compares whether its successor array[a+1] is greater than it
  • If yes, it is left as it is and now the successor element array[a+1] is checked with its adjacent element array[a+2]
  • Otherwise, the element array[a] moves one position up and gives space for insertion
  • While the successive element array[a+1] is compared to the elements before it and placed at the correct position in the list
  • While placing, an item x is placed in such a position where its predecessors are lesser than x
insert 1

The worst and average case for time complexity is O(n*n), where every element moves to build a sorted list and the rest of the bits shift every time. The best-case scenario is when it’s a sorted list and the time complexity is O(n). And the space complexity for insertion sort is O(1). Insertion sort can be used for smaller datasets and almost sorted lists in a larger dataset.

2.7. Introsort

Introsort invented by David Musser is a hybrid sorting algorithm that does not have any separate sorting technique, yet remarkable due to its sorting strategy. The main feature of intro sort is choosing between insertion sort, quicksort, and heapsort based on the dataset.

Each sorting algorithm has its advantages and disadvantages. Introsort uses a suitable sorting algorithm depending upon the data set. Since insertion sort is good with more minor data, it sorts that kind of data. Quicksort is good when the pivot element is an intermediate value obtained by finding the median. And heapsort is used when the iterations get higher. Still, introsort has the main disadvantage that it cannot put data into the array.

3. Summary

Here is a table summarizing when each sorting algorithm is preferred.

Rendered by QuickLaTeX.com

 4. Conclusion

In this tutorial, we have defined various sorting algorithms and explained their sorting procedures. Their time and space complexities have been provided and thereby giving the merits and demerits of each algorithm. As a result of this, the readers will finally obtain the application areas of those sorting algorithms.

Comments are open for 30 days after publishing a post. For any issues past this date, use the Contact form on the site.