1) Follow Hari's python datastructure library on GitHub
2) Install
pip install pycoils
3) License
Apache2 License
4) New Features
11 November 2020:
Bit vector data structure
5) List of data structures
Stack using python list
Queue using python list
Heap (Min & Max) using python list.
Binary Search Tree with link inversion traversal
SplayTree -do-
LinkedList
DoublyLinkedList
SeperateChainHashTable (3 types of chaining using LinkedList, SplayTree, BinarySearchTree)
DisjointSetWithUnion (uses uptree nodes and path compression)
PriorityQueues
InternStore
Bit Vector
6) Examples and usage
Refer: pycoils/examples package