codeiiest-dev / Algorithms

Collection of algorithms to read, learn and contribute to.
https://codeiiest-dev.github.io/Algorithms/
MIT License
23 stars 14 forks source link

Adding Implementation of few sorting algorithms #17

Closed Ahel2000 closed 3 years ago

Ahel2000 commented 3 years ago

Description

Created a separate folder called SortingAlgorithms under src. Added 5 sorting algorithms in Java- Merge sort, Quick sort, Selection sort, Insertion sort and Shell sort- each under separate folder. Will add the explanations by this week.

5

Type of change

Please delete options that are not relevant.

Added to SUMMARY.md (delete section if not needed)?

Have you added the page to SUMMARY.md if this is a new page and not a fix?

arnabsen1729 commented 3 years ago

@Ahel2000 please go through the README.md and CONTRIBUTING.md.

For a file to be rendered on the website it must be in markdown format, not as a native file. Instead, you have to make separate md files for each topic, add some brief description about the sorting algo (that helps in searching related keywords), also it is advised to build the src locally using mdbook build -o and check for errors.

If you still have some questions ask in the channel.

Ahel2000 commented 3 years ago

Okay I will make the changes.