Metadata-Version: 2.1
Name: pycoils
Version: 1.6.2
Summary: A Python datastructure library
Home-page: https://bitbucket.org/harisankar-krishna-swamy-code/coils
Author: Harisankar Krishna Swamy
Author-email: harisankar.krishna@outlook.com
License: Apache2
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=2.7, <4
Description-Content-Type: text/markdown

pycoils is an implementaion of some common data structures in Python.

License:

Apache2 License

New Features:

15 July 2018:

* Python 3 & 2.7.15 support

Current implementation for:

1) Stack using python list
2) Queue using python list
3) Heap (Min & Max) using python list.
4) Binary Search Tree with link inversion traversal
5) SplayTree -do-
6) LinkedList
7) DoublyLinkedList
8) SeperateChainHashTable (3 types of chaining using LinkedList, SplayTree, BinarySearchTree)
9) DisjointSetWithUnion (uses uptree nodes and path compression)
10) PriorityQueues
11) InternStore

Examples and usage:

Refer: pycoils/examples package

