Sun. Jan 22nd, 2023

Insertion Sort

How it works Insertion sort is a simple sorting algorithm that considers one element at a time in an array of data, and moves that item into its correct place,…

Bubble Sort

How it works One of the simplest algorithms to implement, the bubble sort compares each two adjacent values in a list, and if the values are in the wrong order,…

Sorting Algorithms

Sorting algorithms are used to ensure that lists of data are organised - for example, a list of numbers are rearranged so that they run from lowest to highest (ascending)…