This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 | |
""" |