Here' an amazing repo regarding data structure using python. This is a compilation of python codes examples and implementations of various concepts of data structure. It comprises of various resources for efficient understanding and utilizion of data structure in python.
- You need to create an issue first and wait till you are assigned the issue before creating a Pull Request.
- Give a proper description about your proposed and implemented changes in your issues and pull requests.
You can find our Contributing Guidelines here.
-
Fork this repo (button on top).
-
Clone on your local machine.
git clone https://github.com/himanshu-03/Python-Data-Structures.git
-
Navigate to the project directory.
cd Python-Data-Structures
-
Create a new branch
git checkout -b <branch-name>
-
Adding New Data Strcture
- Create a folder named by the Data Structure
- Create
.py
file for a particular algorithm or code
If data structure folder already exists in the repo, kindly add your code in the respective folder.
-
Add all the changes that you have made
git add .
-
Commit your changes
git commit -m "{Message}"
-
Then push
git push -u origin <branch-name>
-
Submit a pull request 😎
This project follows the MIT LICENSE.