AlgoVault is a comprehensive library that houses all famous algorithms, from sorting and searching to dynamic programming and graph algorithms. Each algorithm is provided with a detailed explanation, along with a clean, structured implementation in a proper library format. This repository is designed for anyone looking to understand, learn, and apply algorithms easily, with functions ready to call and use for any purpose.
- Sorting Algorithms: Quicksort, Mergesort, Heapsort, Bubble Sort, etc.
- Searching Algorithms: Binary Search, Depth-First Search (DFS), Breadth-First Search (BFS), etc.
- Graph Algorithms: Dijkstra, A*, Prim’s Algorithm, etc.
- Dynamic Programming: Knapsack, Longest Common Subsequence, etc.
- And More: We aim to cover all fundamental algorithms that are widely used in programming!
Each algorithm is presented in:
- Readable Code: With comments and explanations.
- Library Format: Making it easy to call functions for your own projects.
- Clear Documentation: Explaining how the algorithm works, time complexity, and where it’s best used.
This repository is part of Hacktoberfest 2024, and we welcome contributions from developers around the globe. If you’re looking to make your mark in the open-source community, this is a great place to start!
Contributions are always welcome!
Start by forking the repository.
Once you have forked the repository, clone it to your local development environment using the following command:
git clone https://github.com/<your_github_username>/AlgoVault.git
Replace <your_github_username>
with your GitHub username.
Move into the project's directory and create a new branch for your contributions:
cd AlgoVault
git checkout -b my-feature-branch
Replace my-feature-branch
with a descriptive branch name related to your changes.
Now it's time to work on your contributions!
git status
git add .
git commit -m "<EXPLAIN-YOUR-CHANGES>"
git push origin my-feature-branch
Replace my-feature-branch
with the name of your branch.
Go to your forked repository on GitHub, and you should see a "Compare & pull request" button. Click on it to create a pull request (PR) from your branch to the dev
branch of the main AlgoVault repository.
This project is licensed under the MIT License – see the LICENSE file for more details.
⭐ Give this Project a Star
If you enjoyed working on this project, please do ⭐ it and share this repository with others!
🎉 🎊 😃 Happy Contributing! 😃 🎊 🎉