From 429fdc3804d1894866cd94659ffa41a476235739 Mon Sep 17 00:00:00 2001 From: Sphesihlebjamile <165266044+Sphesihlebjamile@users.noreply.github.com> Date: Thu, 16 Apr 2026 08:47:57 +0200 Subject: [PATCH] Added project readme --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 README.md 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.