A suffix array is a data structure that represents the lexicographically sorted list of all suffixes of a string (in the computer-science, not the linguistics, sense of the word suffix). It is the basis for many high-performance algorithms performed on very large strings, for example full-text ...
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) ...
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
128 views
longest common substring for 2/3 strings : suffix array vs dynamic programming approach
If I want to find the longest common substring for 2 strings then which approach will be more efficient in terms of time/space complexity: using suffix arrays of DP?
DP will incur O(m*n) space with ...
3
votes
1answer
190 views
Looking for ideas: lexicographically sorted suffix array of many different strings compute efficiently an LCP array
I don't want a direct solution to the problem that's the source of this question but it's this one link:
So I take in the strings and add them to a suffix array which is implemented as a sorted set ...
0
votes
1answer
73 views
Meaning of S[3i]S[3i + 1]S[3i + 2] [closed]
I have trouble understanding the following:
We have the String ABRACADABRA. We divide this into groups as example:
S is divided into the group:
S0 = <S[3i]S[3i + 1]S[3i + 2] for i = ...
1
vote
1answer
130 views
How do you actually apply suffix arrays to any kind of text?
I am reading about Suffix Arrays and the code to build one is simple. But all the resources I have found usually use a trivial example text, which usually is banana, to explain the concept.
So ...
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 = ...
0
votes
2answers
225 views
Suffix array and search a substring in a string
I found an implementation of suffix array in Ruby and changed it a bit. Here is what I have:
class SuffixArray
def initialize(str)
@string = str
@suffix_array = []
...
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 ...
0
votes
2answers
107 views
Why does this example use null padding in string comparisons? “Programming Pearls”: Strings of Pearls
In "Programming Pearls": Strings of Pearls, section 15.3 (Generating Text), the author introduces how to generate random text from an input document. In the source code, there are some things that I ...
0
votes
1answer
73 views
Minimum rotation using Suffix array— Revisited
Consider a string of length n (1 <= n <= 100000).
Determine its minimum lexicographic rotation.
For example, the rotations of the string “alabala” are:
alabala
labalaa
abalaal
...
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 ...
3
votes
1answer
174 views
Shortest uncommon substring
We need to find shortest uncommon substring between two strings
i.e. if we have two strings a and b so we need to find the length of shortest substring of a that is not a substring of b.
How to solve ...
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 ...
0
votes
1answer
52 views
Unable to understand the concept mentioned in http://pine.cs.yale.edu/pinewiki/SuffixArrays
Please explain:
Suppose we have a suffix array corresponding to an n-character text and we want to find all occurrences in the text of an m-character pattern. Since the suffixes are ordered, the ...
0
votes
5answers
234 views
substring calculation in a string
I am having difficulty finding better approach than O(n^2) for the following question.
I am given a string e.g xyxxz.
Now I need to find total number of matching characters in each prefix of the ...
5
votes
1answer
456 views
How does LCP help in finding the number of occurences of a pattern?
I have read that the Longest Common Prefix (LCP) could be used to find the number of occurences of a pattern in a string.
Specifically, you just need to create the suffix array of the text, sort it, ...
2
votes
3answers
406 views
Minimum Lexicographic Rotation Using Suffix Array
Consider a string of length n (1 <= n <= 100000).
Determine its minimum lexicographic rotation.
For example, the rotations of the string “alabala” are:
alabala
labalaa
...
14
votes
2answers
601 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 ...
0
votes
1answer
372 views
Longest Common Prefixes
Suppose I constructed a suffix array, i.e. an array of integers giving the starting positions of all suffixes of a string in lexicographical order.
Example: For a string str=abcabbca,
the suffix ...
2
votes
0answers
312 views
Udi Manber and Gene Myers Method
I have a suffix array SA, and an array L that stores the length of LCP (longest common prefix) between two consecutive suffixes, i.e.
L[i]=LCP(SA[i-1],SA[i]) where 1<=i<=|SA|
It's also ...
0
votes
2answers
104 views
Maximal substrings search
Given a string S, consisting of the lowercase Latin letters. I want to find for each position S[i] max length L[i] for which there exists a position i' < i that s[i'..i'+L[i]-1] = s[i..i+L[i]-1]. ...
2
votes
2answers
301 views
Good pedagogical ressources on suffix arrays
I simply cannot find any good pedagogical ressource explaining suffix arrays. Even the "bible" doesn't cover it.
Where can I find a clear and thorough explanation of suffix arrays and their uses? (A ...
3
votes
2answers
305 views
Compressing Suffix Arrays in Java
I have created a suffix array using the Princeton implementation. However, my basic text document is very, very large and the resulting suffix array is over 500mb in size. Is there a way to compress ...
1
vote
2answers
227 views
string pattern match,the suffix array can solve this or have more solution?
i have a string that random generate by a special characters (B,C,D,F,X,Z),for example to generate a following string list:
B D Z Z Z C D C Z
B D C
B Z Z Z D X
D B Z F
Z B D C C Z
B D C F Z
...
1
vote
3answers
886 views
Complete Suffix Array
A suffix array will index all the suffixes for a given list of strings, but what if you're trying to index all the possible unique substrings? I'm a bit new at this, so here's an example of what I ...
1
vote
2answers
615 views
String similarity in c
For two strings A and B, we define the similarity of the strings to be the length of the longest prefix common to both strings. For example, the similarity of strings "abc" and "abd" is 2, while the ...
16
votes
3answers
1k views
What's the current state-of-the-art suffix array construction algorithm?
I'm looking for a fast suffix-array construction algorithm. I'm more interested in ease of implementation and raw speed than asymptotic complexity (I know that a suffix array can be constructed by ...
2
votes
2answers
414 views
Where would a suffix array be preferable to a suffix tree?
Two closely-related data structures are the suffix tree and suffix array. From what I've read, the suffix tree is faster, more powerful, more flexible, and more memory-efficient than a suffix array. ...
1
vote
1answer
332 views
Is radix sort used for suffix sorting?
I'm trying to implement block sorting. This is from the Burrows Wheeler paper.
(Before this step, you create a V suffix array of S)
Q4. [radix sort]
Sort the elements of V , using the first two ...
9
votes
2answers
466 views
How to sort array suffixes in block sorting
I'm reading the block sort algorithm from the Burrows and Wheeler paper.
This a step of the algorithm:
Suppose S= abracadabra
Initialize an array W of N words W[0, ... , N - 1], such that W[i] ...
2
votes
2answers
637 views
Finding a substring while allowing for mismatches with Ruby
I was reading about a suffix array approach to look for substrings within strings see (http://www.codeodor.com/index.cfm/2007/12/24/The-Suffix-Array/1845)
e.g.
sa = SuffixArray.new("abracadabra")
...
1
vote
2answers
269 views
Specifying end of string sentinels in Python prior to constructing a suffix array
I'm implementing algorithms in http://portal.acm.org/citation.cfm?id=1813708 that utilize suffix arrays to find longest common substrings. The algorithms involve constructing a suffix array for a ...
1
vote
3answers
966 views
Suffix Array Implementation in Java
I'm looking to write an efficient n-order Markov chain method to generate random text strings given a set of example text. I currently have a Java implementation that uses several layers of Maps, but ...
2
votes
2answers
803 views
Efficient suffix array algorithm in c#
Does anyone have any suggestions about where I can find a C# implementation for suffix arrays? I'd prefer not to reinvent the wheel...
10
votes
4answers
6k views
strcmp for python or how to sort substrings efficiently (without copy) when building a suffix array
Here's a very simple way to build an suffix array from a string in python:
def sort_offsets(a, b):
return cmp(content[a:], content[b:])
content = "foobar baz foo"
...