Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
5answers
529 views

String analysis

Given a sequence of operations: a*b*a*b*a*a*b*a*b is there a way to get the optimal subdivision to enable reusage of substring. making a*b*a*b*a*a*b*a*b => c*a*c, where c = a*b*a*b and ...
13
votes
2answers
3k views

Understanding Ukkonen's algorithm for suffix trees

I'm doing some work with Ukkonen's algorithm for building suffix trees, but I'm not understanding some parts of the author's explanation for it's linear-time complexity. I have learned the algorithm ...
8
votes
1answer
182 views

substring finding from a string

Input: string S = AAGATATGATAGGAT. Output: Maximal repeats such as GATA (as in positions 3 and 8), GAT (as in position 3, 8 and 13) and so on... • A maximal repeat is a substring t occurs k>1 times ...
8
votes
1answer
830 views

Longest palindrome in a string using suffix tree

I was trying to find the longest palindrome in a string. The brute force solution takes O(n^3) time. I read that there is a linear time algorithm for it using suffix trees. I am familiar with suffix ...
7
votes
3answers
834 views

Successive adding of char to get the longest word in the dictionary [closed]

Given a dictionary of words and an initial character. find the longest possible word in the dictionary by successively adding a character to the word. At any given instance the word should be valid ...
5
votes
1answer
144 views

Complexity of building a Suffix Tree

To build a suffix tree, in the worst case if all the letter of the string are different the complexity would be something like n + (n-1) + (n-2) ... 1 = n*(n+1)/2 which is O(n^2). However ...
5
votes
1answer
3k views

Looking for the suffix tree implementation in C#?

I've implemented a basic search for a research project. I'm trying to make the search more efficient by building a suffix tree. I'm interested in a C# implementation of the Ukkonen algorith. I don't ...
4
votes
0answers
436 views

Have a question about the Farach Algorithm,

I was reading a book titled "Burrows-Wheeler Transform:: Data Compression, Suffix Arrays, and Pattern Matching", I want to learn more about Pattern matching, in the suffix tree section, I could not ...
4
votes
1answer
640 views

Finding the Longest Common Substring in a Large Data Set

In the past few days I've researched this extensively, I've read so many things that I am now more confused then ever. How does one find the longest common sub string in a large data set? The idea is ...
3
votes
1answer
168 views

Suffix trees in javascript?

Is there a nice implementation of suffix trees in JavaScript? Something that will take a string (and a separator) and make the appropriate suffix tree?
3
votes
2answers
778 views

How to speed up calculation of length of longest common substring?

I have two very large strings and I am trying to find out their Longest Common Substring. One way is using suffix trees (supposed to have a very good complexity, though a complex implementation), and ...
3
votes
1answer
787 views

Building a suffix tree in C++

I'm attempting to build a suffix tree in C++ as part of an assignment on gene sequencing void Tree::insert(string ins) { Node* iterator = chooseBranch(root, ins.at(0)); string temp; ...
3
votes
3answers
4k views

Generalized Suffix Tree Java Implementation

I am looking for a Java implementation of the Generalized Suffix Tree which have the following functionality: After the creation of the gst from lets say 1000 strings ich want to find out how many of ...
2
votes
1answer
42 views

suffix tree implementation in python

Just wondering if you are aware of any C based extension in python that can help me construct suffix trees/arrays in linear time ? Thanks! -Abhi
2
votes
6answers
188 views

Given a string, find all its permutations that are a word in dictionary

This is an interview question: Given a string, find all its permutations that are a word in dictionary. My solution: Put all words of the dictionary into a suffix tree and then search each ...
1
vote
1answer
121 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
2answers
240 views

substring searching in a string using suffix tree..?

I have read that : Searching for a substring, pat[1..m], in txt[1..n], can be solved in O(m) time (after the suffix tree for txt has been built in O(n) time). but at each point, we will have to ...
1
vote
1answer
155 views

Can someone explain when and how to extend a suffix tree?

I'm working on a php script which has to find the longest repeated substring. I found this Suffix-Tree thing. I'm trying to implement Ukkonnen's algorithm, but I can't get when and how to extend the ...
1
vote
3answers
476 views

Suffix Tree: Longest repeating substring implementation

I have implemented a suffix tree, which is not compressed. I wanted to know how to solve the problem of finding the longest repreating substring in a string. I know that we have to find the deepest ...
1
vote
5answers
1k 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 ...
0
votes
0answers
22 views

Stream variant of the Longest palindromic substring

Suppose I have a character stream as my input. What is the most optimal way to find the longest palindromic substring after each new character is added without reprocessing the whole string all ...
0
votes
1answer
59 views

Concurrent insertions in a Suffix Tree

Some time ago I posted a question about saving/retrieving a Suffix Tree from disk. That's finally working fine, but now the construction is extremely slow, and I don't want to mess with the Ukkonen's ...
0
votes
2answers
167 views

Ukkonen algorithm in C++

Is there an implementation of the Ukkonen's algorithm for building Suffix Tree in C++? Any implementation in a high level language is good too.
0
votes
1answer
53 views

What should I read to understand suffix trees?

I've come to understand that suffix trees are excellent and useful structures for a multitude of string related tasks, and I would like to learn more about them. Can anyone suggest a good starting ...
0
votes
1answer
31 views

finding all indexes of a keyword in a suffix tree

This is a visual graph of a suffix tree for the input text "mississippi". In this example, my keyword that I'm searching for is "si". I think I understand how to get the first index of "si" start ...
0
votes
2answers
87 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 ...
0
votes
1answer
342 views

Building a suffix tree for a string matching algorithm in large database

I had an internship interview last week and I was given a question regarding searching for a particular string in a large database. I was totally clueless about it during the interview though I just ...
0
votes
2answers
631 views

Token Suffix Tree Tutorial

Can someone please point to tutorials on - "Token Suffix Trees". Google, gives only links to research papers that are already using them! :( Thanks in advance.
-3
votes
0answers
30 views

Cyclic binary strings detection [closed]

Possible Duplicate: Search for cyclic strings Thanks (Apparently I've to add text so it meets the quality standards). I am not asking necessarily for a complete answer. Some hints would ...