Related questions
Trie vs. suffix tree vs. suffix array
Which structure provides the best performance results; trie (prefix tree), suffix tree or suffix array? Are there other similar structures? What are good Java implementations of these structures?
Edit: in this case I want to make string matching between a …
How to implement a tree data-structure in Java?
Is there any standard Java library class to represent a tree in Java?
Specifically I need to represent the following:
The sub-tree at any node can have an arbitrary number of children
Each node (after the root) and it's children …