Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cca138a

Browse files
committed
Add counting sort.
1 parent e3ff82f commit cca138a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,4 +226,4 @@ Below is the list of some of the most used Big O notations and their performance
226226
| **Merge sort** | n log(n) | n log(n) | n log(n) | n | Yes | |
227227
| **Quick sort** | n log(n) | n log(n) | n^2 | log(n) | No | |
228228
| **Shell sort** | n log(n) | depends on gap sequence | n (log(n))^2 | 1 | No | |
229-
| **Counting sort** | n + r | n + r | n + r | n + r | Yes | r - biggest number in sorted array |
229+
| **Counting sort** | n + r | n + r | n + r | n + r | Yes | r - biggest number in array |

0 commit comments

Comments
 (0)