Size:60
Speed:5

Sorting Algorithms

Sorting algorithms are used to sort data structures according to a specific order relationship, such as numerical order or lexicographical order.

This operation is one of the most important and widespread in computer science. For a long time, new methods have been developed to make this procedure faster and faster.

There are currently hundreds of different sorting algorithms, each with its own specific characteristics. They are classified according to two metrics: space complexity and time complexity.

Those two kinds of complexity are represented with asymptotic notations, mainly with the symbols O, Θ, Ω, representing respectively the upper bound, the tight bound, and the lower bound of the algorithm's complexity, specifying in brackets an expression in terms of n, the number of the elements of the data structure.

Most of them fall into two categories:

Logarithmic

The complexity is proportional to the binary logarithm (i.e to the base 2) of n.

An example of a logarithmic sorting algorithm is Quick sort, with space and time complexity O(n × log n).

Quadratic

The complexity is proportional to the square of n.

An example of a quadratic sorting algorithm is Bubble sort, with a time complexity of O(n2).

Space and time complexity can also be further subdivided into 3 different cases: best case, average case and worst case.

Sorting algorithms can be difficult to understand and it's easy to get confused. I believe visualizing sorting algorithms can be a great way to better understand their functioning while having fun!

DESCRIPTION

Bubble Sort is an iterative sorting algorithm that imitates the movement of bubbles in sparkling water. The bubbles represents the elements of the data structure.

The bigger bubbles reach the top faster than smaller bubbles, and this algorithm works in the same way. It iterates through the data structure and for each cycle compares the current element with the next one, swapping them if they are in the wrong order.

It's a simple algorithm to implement, but not very efficient: on average, quadratic sorting algorithms with the same time complexity such as Selection Sort or Insertion Sort perform better.

It has several variants to improve its performance, such as Shaker Sort, Odd Even Sort and Comb Sort.

COMPLEXITY

Average O(n2)
Best Case O(n)
Worst Case O(n2)
Space Complexity O(1)

DESCRIPTION

Selection Sort is an iterative and in-place sorting algorithm that divides the data structure in two sublists: the ordered one, and the unordered one. The algorithm loops for all the elements of the data structure and for every cycle picks the smallest element of the unordered sublist and adds it to the sorted sublist, progressively filling it.

It's a really simple and intuitive algorithm that does not require additional memory, but it's not really efficient on big data structures due to its quadratic time complexity.

This algorithm has been upgraded and enhanced in several variants such as Heap Sort.

COMPLEXITY

Average O(n2)
Best Case O(n2)
Worst Case O(n2)
Space Complexity O(1)

DESCRIPTION

Insertion sort is a simple sorting algorithm that builds the final sorted array one item at a time. It's less performant than advanced sorting algorithms, but it can still have some advantages: it's really easy to implement and it's efficient on small data structures that are already almost sorted.

The algorithm divides the data structure in two sublists: a sorted one, and an unsorted one. Initially, the sorted sublist is made up of just one element and it gets progressively filled. For every iteration, the algorithm picks an element on the unsorted sublist and inserts it at the correct place in the sorted sublist. It's available in several variants such as Gnome Sort.

COMPLEXITY

Average O(n2)
Best Case O(n)
Worst Case O(n2)
Space Complexity O(1)

DESCRIPTION

Quick Sort is a sorting algorithm based on splitting the data structure into smaller partitions and sorting them recursively until the data structure is sorted.

This division in partitions is done based on an element, called a pivot: all the elements bigger than the pivot get placed on the right side of the structure, and the smaller ones to the left, creating two partitions. Next, this procedure gets applied recursively to the two partitions and so on.

This partition technique based on the pivot is called Divide and Conquer. It's a performant strategy used by many sorting algorithms, such as Merge Sort.

COMPLEXITY

Average O(n x log n)
Best Case O(n x log n)
Worst Case O(n2)
Space Complexity O(n)

DESCRIPTION

Merge Sort is a sorting algorithm based on the Divide and Conquor technique, like Quick Sort. It can be implemented iteratively or recursively, using the Top-Down and Bottom-Up algorithms respectively. Represented here is the first one.

The algorithm divides the data structure recursively until the subsequences contain only one element. At this point, the subsequences get merged and ordered sequentially. To do so, the algorithm progressively builds the sorted sublist by adding the minimum element of the next two unsorted subsequences until there is only one sublist remaining. This will be the sorted data structure.

COMPLEXITY

Average O(n x log n)
Best Case O(n x log n)
Worst Case O(n x log n)
Space Complexity O(n)

DESCRIPTION

Heap Sort is an in-place iterative sorting algorithm based on an auxiliary data structure called a heap. It's less efficient than other algorithms with the same time complexity and it's not suitable for data structures with very few elements.

The heap is a data structure representable as a binary tree, where each node has a value greater than or equal to its children. Consequently, the root will hold the maximum value.

The data structure initially gets ordered to form the heap, and then it gets progressively reordered with an algorithm similar to Selection Sort, starting from the bigger elements. This process is known as heapify.

COMPLEXITY

Average O(n x log n)
Best Case O(n x log n)
Worst Case O(n x log n)
Space Complexity O(1)