Tagged Questions
1
vote
0answers
57 views
What is considered the best Java Suffix Tree implementation?
I need a suffix tree Java Implementation. After some googling I concluded that the libdivsufsort C implementation is the best one around. Is there a Java implementation of the same (or almost as good) ...
2
votes
3answers
224 views
Stuck finding deepest path in general tree traversal trying to find largest common substring
I am trying to solve the problem of largest common substring between 2 Strings. I will reduce my problem to the following: I created a general suffix tree and as per my understanding the largest ...
0
votes
2answers
124 views
How can we use a linked lists for the parent-child relationships in a suffix tree?
According to Wikipedia, an important choice when making a suffix tree implementation is the parent-child relationships between nodes. The most common one is using linked lists called sibling lists.
...
3
votes
1answer
344 views
Can I generate all substrings in complexity < O(n^2)
Currently I am using two nested for loop to generate all the substrings of a string. I heard about Suffix Tree but AFAIK Suffix Tree generates suffix not the substrings. Following is the code which ...
0
votes
2answers
362 views
Java Suffix Trie exceeding heap space
I am implementing a suffix trie (this is different from a suffix tree) that stores the characters suffixes of strings as nodes in a tree structure where a string is made up by following traversing the ...
2
votes
5answers
4k views
Short, Java implementation of a suffix tree and usage?
I'm looking for a short, simple suffix tree building/usage algorithm in Java. The best I've found so far lies withing the Semantic Discovery Toolkit, but the implementation is several thousand lines ...
7
votes
3answers
9k views
Generalized Suffix Tree Java Implementation
I am looking for a Java implementation of the Generalized Suffix Tree (GST) with the following features:
After the creation of the GST from say 1000 strings I would like find out how many of these ...