Metadata-Version: 2.1
Name: hero24.data_structures
Version: 1.1
Summary: A set of various data structures
Author: hero24
Author-email: hero24 <hero24@interia.pl>
Project-URL: Homepage, https://github.com/hero24/Data-Structures/
Project-URL: Issues, https://github.com/hero24/Data-Sturctures/issues/
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown

# Data-Structures

## Introduction
A repository containing implementations of different data-structures in langugages. This has been created as container for code I have wrote for either certain purpose or learning data-structure and is updated as I have time or need.

## Contents
|Data structure|
|--------------|
|`CircularList`|
|`DictGraph`|
|`MatrixGraph`|
|`WeightedDictGraph`|
|`WeightedMatrixGraph`
|`Queue`|


## Installing
Python implementations can be easly installed by running `__init__.py` or using pip
```
python3 ./__init__.py
```

```commandline
pip install hero24.data-structures
```
