Some widely used data structures
Project description
py-data-structures
Python implementation of abstract data structures
Install
pip install py-data-structures
Data Structures Covered:
Stack
Usage
from data_structures import Stack
stack = Stack()
stack.push(item) # push an item in stack
stack.pop() # returns and removes the top item from the stack
stack.length # contains the length of the stack
stack.top # contains the top item of the stack
stack.iterate() # override to iterate or perform action on the stack elements
Exceptions
from data_structures import exceptions
# raised on pop() or top when stack is empty
exceptions.EmptyStackException
Queue
Usage
from data_structures import Queue
queue = Queue()
queue.enqueue(item) # add an item at the end of queue
queue.dequeue() # returns and removes the first item from the queue
queue.length # contains the length of the queue
queue.first_item # contains the first item in the queue
queue.last_item # contains the last item in the queue
queue.iterate() # override to iterate or perform action on the queue elements
Exceptions
from data_structures import exceptions
# raised on dequeue(), first_item or last_item when queue is empty
exceptions.EmptyQueueException
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file py-data-structures-0.2.1.tar.gz
.
File metadata
- Download URL: py-data-structures-0.2.1.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
3fb4c8d6e7fc0a7233db61afde2094ce6842c7ec16d16b02901186007c033cf5
|
|
MD5 |
4e5facaad61b67c03fd49656bb9994e6
|
|
BLAKE2b-256 |
7a8adb4730fa6c52d3df71ba02faabf0d88cea10090529cdde9ee6e2d3ea0227
|