Skip to content

Instantly share code, notes, and snippets.

View lomagoel's full-sized avatar

Amol Goel lomagoel

  • data
  • Gurgaon
  • 07:52 (UTC +05:30)
View GitHub Profile
@lomagoel
lomagoel / trie.py
Created April 19, 2021 08:19 — forked from dpapathanasiou/trie.py
Ternary Search Tree in python
#!/usr/bin/env python
"""
A ternary search tree implementation, inspired by:
http://www.drdobbs.com/database/ternary-search-trees/184410528 and
https://lukaszwrobel.pl/blog/ternary-search-tree/
https://github.com/djtrack16/tst/blob/master/ternarysearchtree.py
"""