This app is not suitable for small screen sizes. The minimun screen size required is "876 x 624" pixels.

Continue anyway!

31
30
28
23
29
34
18
28
23
45
17
27
38
26
16
31
35
38
35
31

While the drawer is open, press the algorithm's hotkey to change the description

Color Description

Unsorted

Comparing

Sorted

Implementation

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;
}

Hot Keys

B

Bubble Sort

S

Selection Sort

I

Insertion Sort

Q

Quick Sort

H

Heap Sort

N

Reset Array

R

Stop Sorting

D

Toggle Drawer

By Rahul Gupta

rahulgpt.com

A visualization of common sorting algorithms.
Checkout more of my projects at the above link.