Skip to content

Commit 04abc28

Browse files
authored
Update README.md
1 parent b63a111 commit 04abc28

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ These are for demonstration purposes only. There are many implementations of sor
77
## Sort Algorithms
88

99

10-
### Bubble
10+
### Bubble Sort
1111
![alt text][bubble-image]
1212

1313
From [Wikipedia][bubble-wiki]: **Bubble sort**, sometimes referred to as *sinking sort*, is a simple sorting algorithm that repeatedly steps through the list to be sorted, compares each pair of adjacent items and swaps them if they are in the wrong order. The pass through the list is repeated until no swaps are needed, which indicates that the list is sorted.
@@ -19,7 +19,7 @@ __Properties__
1919

2020
###### View the algorithm in [action][bubble-toptal]
2121

22-
### Bucket
22+
### Bucket Sort
2323
![alt text][bucket-image-1]
2424
![alt text][bucket-image-2]
2525

@@ -41,7 +41,7 @@ __Properties__
4141
* Average case performance O(n<sup>2</sup>)
4242

4343

44-
### Insertion
44+
### Insertion Sort
4545
![alt text][insertion-image]
4646

4747
From [Wikipedia][insertion-wiki]: **Insertion sort** is a simple sorting algorithm that builds the final sorted array (or list) one item at a time. It is much less efficient on *large* lists than more advanced algorithms such as quicksort, heapsort, or merge sort.
@@ -54,7 +54,7 @@ __Properties__
5454
###### View the algorithm in [action][insertion-toptal]
5555

5656

57-
### Merge
57+
### Merge Sort
5858
![alt text][merge-image]
5959

6060
From [Wikipedia][merge-wiki]: **Merge sort** (also commonly spelled *mergesort*) is an efficient, general-purpose, comparison-based sorting algorithm. Most implementations produce a stable sort, which means that the implementation preserves the input order of equal elements in the sorted output. Mergesort is a divide and conquer algorithm that was invented by John von Neumann in 1945.
@@ -67,7 +67,7 @@ __Properties__
6767

6868
###### View the algorithm in [action][merge-toptal]
6969

70-
### Quick
70+
### Quick Sort
7171
![alt text][quick-image]
7272

7373
From [Wikipedia][quick-wiki]: **Quicksort** (sometimes called *partition-exchange sort*) is an efficient sorting algorithm, serving as a systematic method for placing the elements of an array in order.

0 commit comments

Comments
 (0)