# README
This package provides implementations for symbol table data structures.
Symbol Table | Ordered | Self-Balancing | Description |
---|---|---|---|
ChainHashTable | No | N/A | Separate Chaining Hash Table |
LinearHashTable | No | N/A | Linear Probing Hash Table |
QuadraticHashTable | No | N/A | Quadratic Probing Hash Table |
DoubleHashTable | No | N/A | Double Hashing Hash Table |
BST | Yes | No | Binary Search Tree |
AVL | Yes | Yes | AVL Binary Search Tree |
RedBlack | Yes | Yes | Left-Leaning Red-Black Binary Search Tree |