A suffix tree is a data structure that stores all suffixes of a string. It is the basis for many fast algorithms on strings.
0
votes
2answers
102 views
how to find all the possible longest common subsequence from the same position
I am trying to find all the possible longest common subsequence from the same position of multiple fixed length strings (there are 700 strings in total, each string have 25 alphabets ). The longest ...
0
votes
0answers
29 views
Ukkonen's Algorithm Generalized Suffix Trees
I understand the ukkonen's algorithm. I am only curious how to extend it to have more than one string in it (ending with a special character say "$").
I read somewhere that Given strings s1(say ...
3
votes
1answer
47 views
How to remove substring from suffix tree?
I reviewed a lot of literature, but I dont found any information about deleting or insertion substrings into suffix tree. There are only Ukkonen's or McCreight's algorithms for building tree.
The ...
1
vote
0answers
36 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
0answers
48 views
Generating suffix tree of string S[2..m] from suffix tree of string S[1..m]
Is there a fast (O(1) time complexity) way of generating a suffix tree of string S[2..m] from suffix tree of string S[1..m]?
I am familiar with Ukkonen's, so I know how to make fast suffix tree of ...
0
votes
1answer
92 views
Suffix tree in Matlab
I am finding longest substring in text T, such that it is a prefix of string S. I have made algorithm using suffix tree which provides less complex solution, but since Matlab doesn't use pointers or ...
0
votes
0answers
45 views
Post-order traversal of suffix array
In the article "Linear-Time Longest-Common-Prefix Computation in Suffix Arrays and Its
Applications" (found here: http://www.cs.iastate.edu/~cs548/references/linear_lcp.pdf )
authors describe an ...
2
votes
0answers
190 views
Finding a set of repeated, non-overlapping substrings of two input strings using suffix arrays
Input: two strings A and B.
Output: a set of repeated, non overlapping substrings
I have to find all the repeated strings, each of which has to occur in both(!) strings at least once. So for ...
0
votes
0answers
35 views
fast suffix tree construction in c++ [duplicate]
Possible Duplicate:
Ukkonen algorithm in C++
I'm working a bit with suffix trees lately, but I have a problem reducing the complexity of my build procedure (it's a straightforward O(N^2)). ...
2
votes
1answer
102 views
Search in implicit suffix tree constructed by Ukkonen algorithm
I encountered a problem which requires a data structure that will hold a string S and allow me to:
Check if word W is a subword of S in O(|W|) time
Find longest suffix of S that is also a prefix of ...
2
votes
3answers
220 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
1answer
111 views
Suffix Tree and B-Tree
Just a quick question:
Is a suffix tree (a tree that stores suffixes of words) a type of b-tree please?
2
votes
2answers
325 views
Suffix tree and Tries. What is the difference?
I am reading about Tries commonly known as Prefix trees and Suffix Trees.
Although I have found code for a Trie I can not find an example for a Suffix Tree. Also I get the feeling that the code that ...
6
votes
4answers
503 views
Effcient way to find longest duplicate string for Python (From Programming Pearls)
From Section 15.2 of Programming Pearls
The C codes can be viewed here: http://www.cs.bell-labs.com/cm/cs/pearls/longdup.c
When I implement it in Python using suffix-array:
example = ...
1
vote
1answer
131 views
Are there well known algorithms to count substrings in a Suffix Tree?
I've implemented an algorithm to construct a Suffix Tree.
Now, I'm trying to implement a method count that returns the number of times query occurs as a sublist/subinterval of the reference sequence.
...
0
votes
2answers
114 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.
...
1
vote
0answers
69 views
What are the effects of the alphabet size on construct algorithms for suffix trees? [closed]
When takes it the longest to build up a suffix?
Is it for a really small alphabet size, because it has to go deep into the tree?
Or for a large alphabet size?
Or is it dependent on the algorithm you ...
1
vote
0answers
234 views
Good open source suffix tree implementation in python or C++
I'm looking for suffix tree implementation having this friendly API that mimics python dictionary:
import SubstringDict
d = SubstringDict.SubstringDict()
d['foobar'] = 1
d['barfoo'] = 2
d['forget'] ...
1
vote
2answers
128 views
Why do we need a sentinel character in a Suffix Tree?
Why do we need to append "$" to the original string when we implement a suffix tree?
3
votes
3answers
263 views
Can we use circular strings with Suffix Trees?
Can we use circular strings with Suffix Trees?
So the last character is followed by the first in the list.
If so, how is the representation of this suffix tree different from a normal suffix tree?
1
vote
1answer
255 views
Maximum and minimum number of nodes in a suffix tree [closed]
What are the maximum and minimum number of nodes in a suffix tree? And how can I prove it?
8
votes
8answers
1k views
Efficient String/Pattern Matching in C++ (suffixarray, trie, suffixtree?)
I'm looking for an efficient data structure to do String/Pattern Matching on an really huge set of strings. I've found out about tries, suffix-trees and suffix-arrays. But I couldn't find an ...
0
votes
0answers
82 views
String Indexing and Suffix Trees
I have to build some kind of a "string catalogue" out of large PDF documents for faster string/substring searches.
The mechanism should work like this:
A PDF scanner scans the PDF document for ...
2
votes
1answer
218 views
Maximum and minimum number of edges in a suffix tree
What are the maximum and minimum number of edges in a suffix tree? I know the maximum is 2m-1, but I don't understand why that is so.
1
vote
2answers
226 views
unique substrings using suffix tree
For a given string S of length n-
Optimal algorithm for finding all unique substrings of S can't be less than O(n^2). So, the best algorithm will give us the complexity of O(n^2). As per what I have ...
1
vote
0answers
161 views
Looking for the Generalized Suffix Tree implementation in c# / .NET [closed]
I am looking for a Generalized Suffix Tree implementation (Ukkonen's O(n) algo). There are many Suffix Tree implementations, but I could not find any generalized ones, especially in C#, although any ...
2
votes
1answer
260 views
Longest Non-Overlapping Repeated Substring using Suffix Tree/Array (Algorithm Only)
I need to find the longest non-overlapping repeated substring in a String. I have the suffix tree and suffix array of the string available.
When overlapping is allowed, the answer is trivial (deepest ...
0
votes
0answers
478 views
Longest Common Substring, using suffix tree strange answer
I'm using some Javascript implementations to get the suffix trees for the following string. "home depot$the home depot$" The terminal character is either a $ or a #. What I'm expecting is that when I ...
4
votes
1answer
110 views
Extracting all occurrences of repeated and unique patterns from text, along with context
Say I have the text "abcabx". I would like to know that there is a repeated pattern "ab", all the locations it appears, and how the context of those repetitions relates to its other occurrences. I ...
1
vote
0answers
558 views
Find longest common substring of multiple strings using factor oracle enhanced with LRS array
Can we use a factor-oracle with suffix link (paper here) to compute the longest common substring of multiple strings? Here, substring means any part of the original string. For example "abc" is the ...
1
vote
1answer
80 views
Include a Local Perl Module that References a Local C Library
I want to include a local module in a Perl script that's not installed. The code below seems to work for that purpose. However, the module I want to include is a wrapper for a C library. I do it as ...
5
votes
1answer
269 views
Optimization: Python, Perl, and a C Suffix Tree Library
I've got about 3,500 files that consist of single line character strings. The files vary in size (from about 200b to 1mb). I'm trying to compare each file with each other file and find a common ...
2
votes
2answers
188 views
Python Running out of Memory (Using Suffix Trees)
I'm running into a bit of trouble with some code. Please bear in mind that I'm a terrible programmer, so my solution probably isn't very eloquent (and likely the reason why I'm running out of memory - ...
0
votes
0answers
94 views
how to build xml using suffix tree
Could any body help me in design a program for the following algorithm to build a suffix tree of an xml file
Input: an XML tree P
Output: suffix tree P’
Program Construction_XML_Suff
Create node ...
14
votes
2answers
603 views
Suffix Arrays vs Suffix Trees
I just wanna know, when a suffix tree is superior to an enhanced suffix array.
After reading Replacing suffix trees with enhanced suffix arrays i don't see a reason to use suffix trees anymore. Some ...
2
votes
1answer
66 views
Document retrieval with unwanted words
I am building a data structure that helps indexing a collection of S documents of total length n, such that it supports the following query: Given two words P1 and P2, count all the documents that ...
5
votes
3answers
389 views
How do Suffix Trees work?
I'm going through the data structures chapter in The Algorithm Design Manual and came across Suffix Trees.
The example states:
Input:
XYZXYZ$
YZXYZ$
ZXYZ$
XYZ$
YZ$
Z$
$
...
0
votes
1answer
614 views
Suffix Tree and Longest Repeated Substring issue
When running the algorithm on the string 'AEKEAAEKEAAEKEA$' looking for the longest substring with at least 3 occurences all the nodes in the suffix tree have maximum 2 branches, how can that be?
The ...
1
vote
1answer
312 views
Longest Repeated Substring Issue
When creating a suffix tree of the string "ABAB" I get only 2 nodes:
ABAB and BAB
The longest repeatead substring ("AB") should be located by "the deepest node with at least k descendants" but this ...
0
votes
2answers
917 views
Longest palindromic substring and suffix trie
I was Googling about a rather well-known problem, namely: the longest palindromic substring
I have found links that recommend suffix tries as a good solution to the problem.
Example SO and Algos
The ...
5
votes
1answer
704 views
How and when to create a suffix link in suffix tree?
Could anyone give me an example about how and when to create a suffix link in suffix tree?
If my string is ABABABC, but do use a different example if that is better.
Hope to give some pictures to ...
3
votes
1answer
323 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 ...
2
votes
1answer
220 views
Ukkonen suffix tree: procedure 'canonize' unclear
How does the 'canonize' function (given below, from Ukkonen's paper) work, and in particular, when is the while loop finished? I think the value of p' - k' will always remain less than that of p - k. ...
3
votes
4answers
556 views
Working with suffix trees in python
I'm relatively new to python and am starting to work with suffix trees. I can build them, but I'm running into a memory issue when the string gets large. I know that they can be used to work with ...
1
vote
1answer
148 views
Generating suffixes from a Suffix Tree
I've built a suffix tree in Java based on the site here http://marknelson.us/1996/08/01/suffix-trees/ but I've run into a problem. I can build a suffix tree fine but I can trying to build a set of all ...
0
votes
3answers
135 views
Circular dependent structs in C/C++
Heres a simple question, I'm implementing suffix array but I'm stuck here:
#define SIZE 150
struct node{
transition *next[SIZE]; //error here
};
struct transition{
int left, right;
...
1
vote
1answer
166 views
Returning multiple nodes when searching a tree/trie?
I have constructed a suffix trie, a tree containing all the suffixes of a string, where each node contains only one character, with a SuffixNode at the end of each path which contains the locations of ...
-2
votes
1answer
120 views
what does this line do in this code?
i have found following code on online for suffix tree
#include <stdio.h>
#define E 0
struct suffix_tree_node;
struct suffix_tree_link {
// 0 is e - global index of during string's end
...
2
votes
2answers
1k views
suffix tree construction
i am going to implement suffix tree for given string, i think it should delcared like this
struct suffix
{
char letter;
suffix * left,*right;
};
suffix *insert(suffix *node,char *s){
}
...
3
votes
2answers
1k views
Suffix tree library for c++ with simple examples how to use it
I'm searching for suffix tree library (that has linear time construction), and all I found is PATL, but PATL has no documentation and I can't figure out any of the examples.
So is there a suffix ...
