Skip to content

Commit 7dc76e6

Browse files
authored
Merge pull request argonautica#46 from PaulaAsto/update-readme
Update readme. Issue argonautica#42
2 parents 6457968 + cd3bb5d commit 7dc76e6

File tree

1 file changed

+31
-17
lines changed

1 file changed

+31
-17
lines changed

README.md

Lines changed: 31 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,64 @@
11
# Sorting Algorithms
2-
Sorting algorithms implemented in different languages (for hacktoberfest :D).
3-
- [Cpp](#-Cpp)
4-
- [C](#-C)
5-
- [Go](#-Go)
6-
- [Java](#-Java)
7-
- [Javascript](#-Javascript)
8-
- [Python](#-Python)
9-
10-
# Cpp
2+
_Sorting algorithms implemented in different languages (for hacktoberfest 😃)._
3+
4+
## List of Algorithms ⌨️
5+
* [C++](#c++)
6+
* [C](#c)
7+
* [Go](#go)
8+
* [Java](#java)
9+
* [Javascript](#javascript)
10+
* [Python](#python)
11+
12+
### C++
1113
- [Bubble Sort](C++/BubbleSort.cpp)
1214
- [Heap Sort](C++/HeapSort.cpp)
15+
- [Insertion Sort](C++/InsertionSort.cpp)
1316
- [Merge Sort](C++/MergeSort.cpp)
1417
- [Quick Sort](C++/QuickSort.cpp)
18+
- [Selection Sort](C++/SelctionSort.cpp)
1519
- [Shell Sort](C++/ShellSort.cpp)
1620

17-
# C
21+
### C
1822
- [Bubble Sort](C/BubbleSort.c)
1923
- [Insertion Sort](C/InsertionSort.c)
24+
- [Merge Sort](C/MergeSort.c)
2025
- [Quick Sort](C/QuickSort.c)
2126
- [Selection Sort](C/SelectionSort.c)
2227

23-
# Go
28+
### Go
2429
- [Radix Sort](Go/RadixSort.go)
2530

26-
# Java
31+
### Java
2732
- [Bogo Sort](Java/BogoSort.java)
2833
- [Bubble Sort](Java/BubbleSort.java)
29-
- [Heap Sort](Java//HeapSort.java)
34+
- [Counting Sort](Java/Counting%20Sort.java)
35+
- [Heap Sort](Java/HeapSort.java)
3036
- [Insertion Sort](Java/InsertionSort.java)
3137
- [Merge Sort](Java/MergeSort.java)
3238
- [Quick Sort](Java/QuickSort.java)
39+
- [Radix Sort](Java/RadixSort.java)
3340
- [Selection Sort](Java/SelectionSort.java)
3441
- [Shell Sort](Java/ShellSort.java)
3542

36-
# Javascript
43+
### Javascript
44+
- [Heap Sort](Javascript/HeapSort.js)
45+
- [Insertion Sort](Javascript/Insertionsort.js)
46+
- [Merge Sort](Javascript/MergeSort.js)
47+
- [Quick Sort](Javascript/Quicksort.js)
3748
- [Bubble Sort](Javascript/bubbleSort.js)
49+
- [Selection Sort](Javascript/selectionSort.js)
3850

39-
# Python
51+
### Python
4052
- [Bogo Sort](Python/BogoSort.py)
4153
- [Bucket Sort](Python/BucketSort.py)
4254
- [Gnome Sort](Python/GnomeSort.py)
55+
- [Insertion Sort](Python/InsertionSort.py)
56+
- [Merge Sort](Python/MergeSort.py)
4357
- [Quick Sort](Python/QuickSort.py)
4458
- [Radix Sort](Python/RadixSort.py)
4559
- [Selection Sort](Python/SelectionSort.py)
4660

47-
# Contributing
48-
If there's an existing folder named with your chosen language, create a file for your new algorithm inside, calling it by the algorithm name and using the appropriate file extension i.e. `bubbleSort.js`. If there aren't any algorithms using your chosen language, feel free to start your own folder, place your implementations inside add it to this documentation as well!
61+
## Contributing 🖇️
62+
If there's an existing folder named with your chosen language, create a file for your new algorithm inside, calling it by the algorithm name and using the appropriate file extension i.e. `bubbleSort.js`. If there aren't any algorithms using your chosen language, feel free to start your own folder and place your implementations inside, and don't forget update the [README.md](README.md)!
4963

5064
![title](https://hacktoberfest.digitalocean.com/assets/HF19_social-744d976f227e4aff6866443abcede8c651b309ec9c7c9f7410f5944f8e1299b9.png)

0 commit comments

Comments
 (0)