gissuebot
gissuebot
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=10#c1) posted by **kevinb9n** on 2007-10-01 at 07:51 PM_ --- thanks! It would be really, really (really) helpful if we could collect, here, a good variety of use cases...
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=10#c2) posted by **sberlin** on 2007-10-01 at 08:10 PM_ --- We use it internally for a few cases. 1) An IP list. We have a KeyAnalyzer that analyzes ip...
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=10#c3) posted by **kevinb9n** on 2007-10-16 at 03:37 PM_ --- Great stuff, folks. Thanks so much. With the sheer mountain of work involved in getting our existing stuff polished,...
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=10#c4) posted by **kevinb9n** on 2007-10-23 at 04:29 AM_ --- Disclaimer: I don't know much about Tries. I can imagine that many use cases for a Trie break into...
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=10#c5) posted by **sberlin** on 2007-10-23 at 05:49 AM_ --- From my experience, #1 is exactly right. A Trie easily doubles as a super-efficient SortedMap/NavigableMap. You hit the nail...
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=10#c6) posted by **sberlin** on 2007-10-23 at 05:50 AM_ --- (Really, that getPrefixedBy could just return a List<V> - having it return a vw of the map itself enables...
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=10#c7) posted by **kevinb9n** on 2007-11-03 at 05:32 PM_ --- _(No comment entered for this change.)_ --- **Labels:** `Post-1.0`
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=10#c8) posted by **kevinb9n** on 2008-06-02 at 05:48 PM_ --- _(No comment entered for this change.)_ --- **Labels:** -`Post-1.0`
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=10#c9) posted by **tim.frey.online** on 2009-03-22 at 10:31 AM_ --- Hello, currently I'm wirting something for my studies and did a bit of research about Tries. I fall upon...
_[Original comment](https://code.google.com/p/guava-libraries/issues/detail?id=10#c10) posted by **ray.a.conner** on 2009-08-03 at 05:53 PM_ --- To completely generalize it, a Trie is kind of a particular way of representing a Set< List< E >...