Efficient spell checker built with a custom hash set and binary search tree. Achieves double performance using optimized collision handling. Showcases practical use of both data structures for fast dictionary lookups.
python algorithms dictionary binary-search-tree spell-checker hash-table hash-set collision-resolution
-
Updated
Oct 17, 2025 - Python