Python-Datastructures is a Python library containing implementations of various data structures written purely in Python. Useful when preparing for interviews or building school projects. Allow the user to focus on developing your algorithms and not worry about finding python implementations of classic data structures.
Use the package manager pip to install python-datastructures.
pip install python-datastructures
Sample usage of the library. Import any datastructure from the list of supported datastructures.
- Stack
- Queue
- DeQueue
- SinglyLinkedList
- DoublyLinkedList
- CircularList
- MaxHeap
- MinHeap
- Trie
from python_datastructures import MinHeap
arr = [2,3,18,29,7,82,1,9]
heap = MinHeap(arr)
print(heap.peek()) # returns 1
Explore the Different data structures and methods associated with them. Documentation below describes the various methods associated with each data structure as well as a short description on what it does.
To set up dev environment and work on the package clone the repository then run.
make setup
Other usefull development commands include:
make test // run tests
make lint // code formatting
make build // build package localy
make install-build // install local package globally
make uninstall-build // uninstall local package gloablly
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.