76
36
66
40
15
60
72
62
31
91
Unsorted
Checking
Swapping
Sorted

Bubble Sort is a popular sorting algorithm that loops from the beginning of an array and tries to find
the largest element and "bubbles" it to the end of the array. Take a look at the graph and pay close attention
the "swapping" color. Notice how it loops from the beginning and carries the largest element to the end of
the array. Bubble Sort will do this until all the elements are sorted.

Generate New Array
Size
10
25
50
Speed
1x
2x
3x
Bubble Sort
Quick Sort
Merge Sort