Metadata-Version: 2.1
Name: slav-eeik-datastructures
Version: 0.3
Summary: Simple datastructures library with documentation.
Home-page: https://github.com/zhukovrost/datastructures
Author: Zhukov Rostislav
Author-email: 2rosf.zhukov@gmail.com
License: MIT
Project-URL: Source Code, https://github.com/zhukovrost/datastructures
Project-URL: Documentation, https://zhukovrost.github.io/datastructures/
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: sphinx; extra == "dev"
Requires-Dist: sphinx-rtd-theme; extra == "dev"
Requires-Dist: pytest; extra == "dev"

Python Data Structures by slav_EEik
===================================

## About the project

This is a simple datastructures and algorithms library. It is also published on [PyPi](https://pypi.org/project/slav-eeik-datastructures/).

You can see the automatically-generated **documentation on [GitHub Pages](https://zhukovrost.github.io/datastructures/)**.

Here are all implemented datastructures:
- Lists
  - Singly Linked List
  - Doubly Linked List
  - Static Array

- Linear Structures
  - Stack
  - Queue
  - Deque

- Heaps
  - Min Heap
  - Priority Queue

- Trees
  - Binary Tree
  - Binary Search Tree
  - Sequence Binary Tree 
  - Trie

- Graphs
  - Adjacency List
  - Adjacency Matrix

You can also utilize **nodes** of these structures in your projects.

Here are all implemented algorithms:
- Sorting Algorithms:
    - Heap Sort
    - Bubble Sort
    - Quick Sort
 
- String search algorithms:
  - Brute Force Search
  - Rabin-Karp Algorithm
  
- Tree Algorithms:
  - Tree balancing
- Graphs Algorithms:
  - Dijkstra algorithm
  - Breadth First Search
  - Depth First Search

## Installation

```sh
pip install --upgrade pip
pip install slav-eeik-datastructures
```

## Modules:

![Project Structure](https://github.com/zhukovrost/datastructures/blob/master/datastructures.svg)

## License
This project is licensed under the MIT License - see the [LICENSE file](https://github.com/zhukovrost/datastructures/blob/master/LICENSE) for details.

## Contacts
For any inquiries, please reach out to the project maintainer on [GitHub](https://github.com/zhukovrost) or [Telegram](https://t.me/slav_EEik).
