Python 3+ version data structures
Project description
Python basic data structures implementations
The data_structures3x is a python package with 3 of the most basic data structures. The package would keep updating as python itself updates to higher versions.
It contains the following data structures:
- Binary Tree
- Linked List
- Hashmap
Installation
If not already, install pip
Install the package with pip
or pip3
:
pip install data-structures3x
Usage
See more examples at My Docs
Example of a linked list:
from dt_structures3x.linkedlist import Item
# linked list
root = Item(10)
root.appendChild(Item(17), Item(19))
root.display()
Output:
10 -> 17 -> 19
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
Built Distribution
File details
Details for the file data-structures3x-1.3.5.tar.gz
.
File metadata
- Download URL: data-structures3x-1.3.5.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0889cf7b27f314da071c3480d165b313b8bee131332af8a978c06b82a6ba4fe |
|
MD5 | a9b735556f277d072cb387cbacd2f20e |
|
BLAKE2b-256 | 6908a9fe5972c1740e7d5e1349829a526f312775f42459cab66bd4eef8b12b0c |
File details
Details for the file data_structures3x-1.3.5-py3-none-any.whl
.
File metadata
- Download URL: data_structures3x-1.3.5-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21e3740cf01e5de3a9fa890fb0a97a5f599df6cd4aab7da70c1a0302eee71738 |
|
MD5 | 0f12f90cb24c83343cb9c2a8b4674a93 |
|
BLAKE2b-256 | 753bba45efc6aa53dbed8a52a06b3994be6f647f8d0a4aeb24aa957862cad81e |