Skip to content

Commit 978a52e

Browse files
authored
Merge pull request argonautica#57 from mahi397/edit-readme
Proposed edits to Readme.MD
2 parents 7996090 + e740f50 commit 978a52e

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

README.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,25 @@
11
# 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._
33

44
## List of Algorithms ⌨️
5-
* [C++](#c++)
5+
6+
## Language Directory
67
* [C](#c)
8+
* [C++](#c++)
9+
* [C#](#c#)
710
* [Go](#go)
811
* [Java](#java)
9-
* [Javascript](#javascript)
12+
* [JavaScript](#javascript)
1013
* [Kotlin](#kotlin)
1114
* [Python](#python)
1215

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+
1323
### C++
1424
- [Bubble Sort](C++/BubbleSort.cpp)
1525
- [Heap Sort](C++/HeapSort.cpp)
@@ -23,6 +33,7 @@ _Sorting algorithms implemented in different languages (for hacktoberfest 😃).
2333

2434
- [Selection Sort](C++/SelctionSort.cpp)
2535
- [Shell Sort](C++/ShellSort.cpp)
36+
2637
- [Cycle Sort](C++/cycleSort.cpp)
2738
- [Tree Sort](C++/treeSort.cpp)
2839
### C
@@ -60,11 +71,13 @@ _Sorting algorithms implemented in different languages (for hacktoberfest 😃).
6071
- [Shell Sort](Java/ShellSort.java)
6172
- [Tim Sort](Java/TimSort.java)
6273

63-
### Javascript
74+
### JavaScript
75+
- [Bubble Sort](Javascript/bubbleSort.js)
6476
- [Heap Sort](Javascript/HeapSort.js)
6577
- [Insertion Sort](Javascript/Insertionsort.js)
6678
- [Merge Sort](Javascript/MergeSort.js)
6779
- [Quick Sort](Javascript/Quicksort.js)
80+
6881
- [RadixSort.js](Javascript/RadixSort.js)
6982
- [Bubble Sort](Javascript/bubbleSort.js)
7083
- [Radix Sort](Javascript/RadixSort.js)

0 commit comments

Comments
 (0)