Skip to content

Latest commit

 

History

History
65 lines (42 loc) · 1.37 KB

README.md

File metadata and controls

65 lines (42 loc) · 1.37 KB

DSA - Data Structures and Algorithms

This repository contains the implmentation of some of the most basic and important data structures and algorithms implemented in C++.

Data Structures and Algorithms


Contributing

  • This repository is contribution friendly. If you like to add or improve any algorithm, your contribution is most welcome.
  • Programs written in C++ will be appreciated. However, programs written in C will also be accepted.

Steps For Contribution

  1. Star this repository.

  2. Fork this repository.

  3. Clone the forked repository.

git clone https://github.com/<your-github-username>/DSA
  1. Navigate to the project directory.
cd DSA
  1. Create a new branch.
git checkout -b <your_branch_name>
  1. Make changes.

  2. Stage your changes and commit

git add -A

git commit -m "<your_commit_message>"
  1. Push your local commits to the remote repo.
git push -u origin <your_branch_name>
  1. Create a Pull Request.

  2. Congratulations! 🎉 you've made your contribution.


Happy Coding! :)