Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 parent node in suffix tree).

For example for String = "acaca"

if Overlapping is allowed answer is "aca" but when overlapping is not allowed answer is "ac" or "ca".

I need the algorithm or high level idea only.

P.S.: I tried but there is no clear answer I can find on web.

share|improve this question
Must the repeat be immediate? What if you had abcdabcbc? Would that be bc? Or would it be abc? – Perkins Sep 30 '12 at 4:02
I am not sure what you mean by immediate. The answer string should not overlap with at least one other repeated occurrence. In your example it would be abc since there are more than one "abc" which does not overlap. – Genuine Programmer Sep 30 '12 at 5:19

1 Answer

The simplest solution is something of a brute force attack. You have an algorithm to find the longest overlapping-allowed string, use it, check if that answer has overlaps, if so, find the second longest, check and see if it has overlaps, and so on. That reduces it to your existing search algorithm, then a regex count operation.

share|improve this answer
This is an obvious way, but would also be the least efficient way. I am looking for a way which uses the some property of suffix tree/array to come up with an elegant answer. Still Thanks. – Genuine Programmer Sep 30 '12 at 5:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.