| Crates.io | u8_ternary_tree |
| lib.rs | u8_ternary_tree |
| version | 0.1.2 |
| created_at | 2025-11-03 22:39:58.138578+00 |
| updated_at | 2025-11-03 22:39:58.138578+00 |
| description | A Ternary Search Tree based on [u8] input and output |
| homepage | |
| repository | https://github.com/mmosko/ternary_tree.git |
| max_upload_size | |
| id | 1915364 |
| size | 11,640 |
A rust ternary search tree.
This TST is simple, with insert(), search(), and longest_prefix(). We will add remove() soon.
It's a long list. The TrieValueType should be a generic. The code is not optimized.