This app is not suitable for small screen sizes. The minimun screen size required is "876 x 624" pixels.
Continue anyway!
While the drawer is open, press the algorithm's hotkey to change the description
Unsorted
Comparing
Sorted
function bubbleSort(arr) {
const swap = (arr, i1, i2) =>
[arr[i1], arr[i2]] = [arr[i2], arr[i1]];
let noSwaps;
for (let i = arr.length; i > 0; i--) {
noSwaps = true
for (let j = 0; j < i - 1; j++) {
if (arr[j] > arr[j + 1]) {
swap(arr, j, j + 1);
noSwaps = false;
}
}
if (noSwaps) break;
}
return arr;
}
Bubble Sort
Selection Sort
Insertion Sort
Quick Sort
Heap Sort
Reset Array
Stop Sorting
Toggle Drawer
A visualization of common sorting algorithms.
Checkout more of my projects at the above link.