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
+17-4Lines changed: 17 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,25 @@
1
1
# Sorting Algorithms
2
-
_Sorting algorithms implemented in different languages (for hacktoberfest 😃). This repository is open to everyone. Feel free to add any sorting algorithms. The instructions for how to contribute to this repo are down below._
2
+
_Sorting algorithms implemented in different languages (for hacktoberfest_ 😃_). This repository is open to everyone. Feel free to add any sorting algorithms. The instructions for how to contribute to this repo are down below._
3
3
4
4
## List of Algorithms ⌨️
5
-
*[C++](#c++)
5
+
6
+
## Language Directory
6
7
*[C](#c)
8
+
*[C++](#c++)
9
+
*[C#](#c#)
7
10
*[Go](#go)
8
11
*[Java](#java)
9
-
*[Javascript](#javascript)
12
+
*[JavaScript](#javascript)
10
13
*[Kotlin](#kotlin)
11
14
*[Python](#python)
12
15
16
+
### C
17
+
-[Bubble Sort](C/BubbleSort.c)
18
+
-[Insertion Sort](C/InsertionSort.c)
19
+
-[Merge Sort](C/MergeSort.c)
20
+
-[Quick Sort](C/QuickSort.c)
21
+
-[Selection Sort](C/SelectionSort.c)
22
+
13
23
### C++
14
24
-[Bubble Sort](C++/BubbleSort.cpp)
15
25
-[Heap Sort](C++/HeapSort.cpp)
@@ -23,6 +33,7 @@ _Sorting algorithms implemented in different languages (for hacktoberfest 😃).
23
33
24
34
-[Selection Sort](C++/SelctionSort.cpp)
25
35
-[Shell Sort](C++/ShellSort.cpp)
36
+
26
37
-[Cycle Sort](C++/cycleSort.cpp)
27
38
-[Tree Sort](C++/treeSort.cpp)
28
39
### C
@@ -60,11 +71,13 @@ _Sorting algorithms implemented in different languages (for hacktoberfest 😃).
0 commit comments