We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 206c80b commit 8122e45Copy full SHA for 8122e45
src/main/java/com/algorithms/sort/README.md
@@ -0,0 +1,19 @@
1
+### Bubble Sort
2
+
3
+The largest number gets pushed to the end in every iteration.
4
5
+Multiple swaps per iteration.
6
7
+
8
9
+***
10
11
+### Selection Sort
12
13
+The smallest number gets pushed to the front of the list in every iteration.
14
15
+Just 1 swap per iteration. The minimum number gets swapped in every iteration.
16
17
+
18
19
src/main/java/com/algorithms/sort/static/bubblesort.gif
151 KB
src/main/java/com/algorithms/sort/static/selectionsort.gif
41.2 KB
0 commit comments