Metadata-Version: 2.1
Name: data-structures3x
Version: 1.3.5
Summary: Python 3+ version data structures
Home-page: https://github.com/Harvard90873/data_structures
Author: Harvard90873
Author-email: harvard90873@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Requires-Dist: importlib-resources
Requires-Dist: python-algorithms-3x
Requires-Dist: termcolor

# 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](https://pip.pypa.io/en/stable/installing/)

Install the package with `pip` or `pip3`:

```bash
pip install data-structures3x
```

# Usage
## See more examples at [My Docs](https://harvard90873.readthedocs.io/en/latest/Python%20Data%20Structures%203x.html)
### Example of a linked list:

```Python
from dt_structures3x.linkedlist import Item
# linked list
root = Item(10)
root.appendChild(Item(17), Item(19))
root.display()
```
Output:
```Python
10 -> 17 -> 19
```


