|
|
|
|
|
by supo
4660 days ago
|
|
Sure, but it can blow up faster than you think. Say you have 100k URL strings, up to 128 chars each, with 64 allowed characters in alphabet. - storing this at byte per char = 12.8MB - storing this in a basic trie = 12.8 * 64 = 820MB - storing this in the TST = 12.8 * 3 = 38MB |
|