You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25-25Lines changed: 25 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,9 @@ These are for demonstration purposes only. There are many implementations of sor
13
13
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.
14
14
15
15
__Properties__
16
-
* Worst case performanceO(n^2)
17
-
* Best case performanceO(n)
18
-
* Average case performanceO(n^2)
16
+
* Worst case performanceO(n^2)
17
+
* Best case performanceO(n)
18
+
* Average case performanceO(n^2)
19
19
20
20
###### View the algorithm in [action][bubble-toptal]
21
21
@@ -27,22 +27,22 @@ __Properties__
27
27
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.
28
28
29
29
__Properties__
30
-
* Worst case performanceO(n^2)
31
-
* Best case performanceO(n)
32
-
* Average case performanceO(n^2)
30
+
* Worst case performanceO(n^2)
31
+
* Best case performanceO(n)
32
+
* Average case performanceO(n^2)
33
33
34
34
###### View the algorithm in [action][insertion-toptal]
35
35
36
36
37
37
### Merge
38
38
![alt text][merge-image]
39
39
40
-
From [Wikipedia][merge-wiki]: In computer science, 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.
40
+
From [Wikipedia][merge-wiki]: In computer science, merge sort (also commonly spelt 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.
41
41
42
42
__Properties__
43
-
* Worst case performanceO(n log n)
44
-
* Best case performanceO(n)
45
-
* Average case performanceO(n)
43
+
* Worst case performanceO(n log n)
44
+
* Best case performanceO(n)
45
+
* Average case performanceO(n)
46
46
47
47
48
48
###### View the algorithm in [action][merge-toptal]
@@ -53,9 +53,9 @@ __Properties__
53
53
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.
54
54
55
55
__Properties__
56
-
* Worst case performanceO(n^2)
57
-
* Best case performanceO(n log n) or O(n) with three-way partition
58
-
* Average case performanceO(n^2)
56
+
* Worst case performanceO(n^2)
57
+
* Best case performanceO(n log n) or O(n) with three-way partition
58
+
* Average case performanceO(n^2)
59
59
60
60
###### View the algorithm in [action][quick-toptal]
61
61
@@ -65,9 +65,9 @@ __Properties__
65
65
From [Wikipedia][selection-wiki]: The algorithm divides the input list into two parts: the sublist of items already sorted, which is built up from left to right at the front (left) of the list, and the sublist of items remaining to be sorted that occupy the rest of the list. Initially, the sorted sublist is empty and the unsorted sublist is the entire input list. The algorithm proceeds by finding the smallest (or largest, depending on sorting order) element in the unsorted sublist, exchanging (swapping) it with the leftmost unsorted element (putting it in sorted order), and moving the sublist boundaries one element to the right.
66
66
67
67
__Properties__
68
-
* Worst case performanceO(n^2)
69
-
* Best case performanceO(n^2)
70
-
* Average case performanceO(n^2)
68
+
* Worst case performanceO(n^2)
69
+
* Best case performanceO(n^2)
70
+
* Average case performanceO(n^2)
71
71
72
72
###### View the algorithm in [action][selection-toptal]
73
73
@@ -97,24 +97,24 @@ Comparing the complexity of sorting algorithms (Bubble Sort, Insertion Sort, Sel
97
97
![alt text][linear-image]
98
98
99
99
From [Wikipedia][linear-wiki]: linear search or sequential search is a method for finding a target value within a list. It sequentially checks each element of the list for the target value until a match is found or until all the elements have been searched.
100
-
Linear search runs in at worst linear time and makes at most n comparisons, where n is the length of the list.
100
+
The linear search runs in at the worst linear time and makes at most n comparisons, where n is the length of the list.
101
101
102
102
__Properties__
103
-
* Worst case performanceO(n)
104
-
* Best case performanceO(1)
105
-
* Average case performanceO(n)
106
-
* Worst case space complexityO(1) iterative
103
+
* Worst case performanceO(n)
104
+
* Best case performanceO(1)
105
+
* Average case performanceO(n)
106
+
* Worst case space complexityO(1) iterative
107
107
108
108
### Binary
109
109
![alt text][binary-image]
110
110
111
111
From [Wikipedia][binary-wiki]: Binary search, also known as half-interval search or logarithmic search, is a search algorithm that finds the position of a target value within a sorted array. It compares the target value to the middle element of the array; if they are unequal, the half in which the target cannot lie is eliminated and the search continues on the remaining half until it is successful.
112
112
113
113
__Properties__
114
-
* Worst case performanceO(log n)
115
-
* Best case performanceO(1)
116
-
* Average case performanceO(log n)
117
-
* Worst case space complexityO(1)
114
+
* Worst case performanceO(log n)
115
+
* Best case performanceO(1)
116
+
* Average case performanceO(log n)
117
+
* Worst case space complexityO(1)
118
118
119
119
From [Wikipedia][shell-wiki]: Shellsort is a generalization of insertion sort that allows the exchange of items that are far apart. The idea is to arrange the list of elements so that, starting anywhere, considering every nth element gives a sorted list. Such a list is said to be h-sorted. Equivalently, it can be thought of as h interleaved lists, each individually sorted.
0 commit comments