Metadata-Version: 2.1
Name: PyDSALib
Version: 0.2
Summary: A library of data structures, implemented in Python for Python
Home-page: https://github.com/HerrHruby/PyDSALib
Author: Ian Wu
Author-email: ianyhwu.97@gmail.com
License: UNKNOWN
Description: # PyDSALib
        
        PyDSALib is a data structures library, written in Python for Python. It aims to provide an efficient implementation and a 
        convenient interface for each data structure, as well as a selection of useful methods and algorithms to manipulate them.
        
        PyDSALib is very much still in development - see the TODO section. We welcome open-source contributions to help improve
        this library.
        
        Data structures currently supported include:
        
        - Queue
        - Deque
        - Stack
        - Linked List
        - Binary Heap
        - Priority Queue
        - Binary Search Tree
        - AVL Tree
        - Graph
        
        Documentation (PDF)is included in the `/docs` folder
        
        # Installation
        
        Prerequisites:
        - Python3.6 or later
        
        Installation using pip:
        
        ```pip install PyDSALib==0.1```
        
        Clone from GitHub:
        
        ```git clone https://github.com/HerrHruby/PyDSALib.git```
        
        
        
        
        
        
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
