Sorting Algorithms
Below are different types of sorting algithims. Click the button to do 1 at a time, or click the bottom button to do all sorts at once to see the efficiency.
Bubble Sort
Evaluate 2 at a time, swap if one to the right is larger
1
2
3
4
5
6
7
8
9
10
11
12
13
14
click
Selection Sort
Evaluate 1 at a time, find largest and sort it
1
2
3
4
5
6
7
8
9
10
11
12
13
14
click
go both