diff --git a/README.md b/README.md new file mode 100644 index 0000000..18222d7 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# Algorithms in Java + +This repository is one where we document the implementations and usage of different algorithms in Java. + +## Table Of Contents +- [Search Algorithms](./src/com/sketch/search/) + - [Binary Search](./src/com/sketch/search/binarysearch/BinarySearch.md) +- [Sort Algorithms](./src/com/sketch/sort/) + - [Quick Sort](./src/com/sketch/sort/quicksort/QuickSort.md) + - [Selection Sort](./src/com/sketch/sort/selectionsort/SelectionSort.md) + +## Contributions +This repository is open-source and available to everyone to wants to learn DSA or wants to contibute to documenting other algorithms. + +Feel free to fork this repository or submit a PR, it would be highly appreciated. + +The documentation of these algorithms primarily come form [Geeks for Geeks](https://www.geeksforgeeks.org/). Feel free to go to their website and learn programming concepts that we have not covered in this repository.