The implementation of Trie in Guava?

In the past, Google Collections included an implementation in TRIE . Is there a TRIE implementation in Guava? I need an efficient way to find common prefixes in a set of strings.

Thanks: -)

+6
source share
1 answer

Is there a TRIE implementation in Guava?

No. (IIRC, this is more or less because trying is a terribly general data structure and we didn’t have the data, resources or demand to develop an API up to the usual Guava standards?)

https://code.google.com/p/guava-libraries/issues/detail?id=10

+6
source

Source: https://habr.com/ru/post/949904/


All Articles