https://github.com/rajeshberwal/dsalib
Official Repository for dsalib Python Package for Data Structure And Algorithms
https://github.com/rajeshberwal/dsalib
algorithms dsa dsa-algorithm library package python python-package python3
Last synced: 8 months ago
JSON representation
Official Repository for dsalib Python Package for Data Structure And Algorithms
- Host: GitHub
- URL: https://github.com/rajeshberwal/dsalib
- Owner: rajeshberwal
- License: mit
- Created: 2020-08-05T11:36:52.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-07T05:27:17.000Z (about 5 years ago)
- Last Synced: 2025-02-05T07:02:38.618Z (over 1 year ago)
- Topics: algorithms, dsa, dsa-algorithm, library, package, python, python-package, python3
- Language: Python
- Homepage: https://dsalib.readthedocs.io/en/latest/
- Size: 57.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.txt
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
A clean and minimal Data Structure And Algorithms Library Implemented in Python.
[](https://pypi.org/project/dsalib)
[](https://pypi.org/project/dsalib)
[](https://pypi.org/project/dsalib)
[](https://dsalib.readthedocs.io/en/latest/)
[](https://www.python.org/)
Currently in development process.
**Documentation**: [dsalib](https://dsalib.readthedocs.io)
## Install
If you have installed multiple versions of python then use:
```shell
pip3 install dsalib
```
and if you have only installed Python3 then use:
```shell
pip install dsalib
```
## Usage
```python
from dsalib import Sorting
arr = [21, 2, 3, 31, 45]
Sorting.merge_sort(arr)
print(arr)
```
Output:
```shell
[2, 3, 21, 31, 45]
```
## Become a contributor
- Fork
- Create new branch, representing the changes
- Make changes, ensure it's working
- Push your own repo
- Create PR, describe your changes
- Thank You