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 when a series of characters (it's actually a really long number) begins to repeat itself. I figured that a pattern would be easiest. Can anyone help me?

share|improve this question
The easiest way is to bruteforce it but then your run time is O(n!) – austinbv Apr 21 '11 at 1:14
Yeah its wayy too long to brute force :) I tried – Deho Apr 21 '11 at 1:15
Something similar may have been asked. download.oracle.com/javase/1.5.0/docs/api/java/util/regex/… – Tass Apr 21 '11 at 1:19
thanks for the repsonse. How do I use that method? I don't know much about patterns in java – Deho Apr 21 '11 at 1:22
This is an ambiguous question: What exactly do you mean by repeat itself? Where are you looking for the repeat to happen? (I.e. what is the haystack?). Please give examples. – Aryabhatta Apr 29 '11 at 23:26

3 Answers

up vote 2 down vote accepted

If its a number, start at the end.

Find the sequence for which the last n and the second last n digit are the same which is repeated over the largest number of digits. O(n)

Where the repeated sequence stops (coming from the end) that is where the repeating starts.

e.g. say you have 1.2340111101111

You can see 1 repeats, but only for 4 digits. 01111 repeats for 10 digits meaning the repeating starts after 1.234

share|improve this answer

Depending on where this sequence is coming from, this might be useful.

share|improve this answer

I don't know Java. I'm not sure of your exact question but it seems like you are trying to find the maximal orbit of a sequence. The following pseudocode should help:

Given sequence M of length N
Initialize list of indices K
foreach index i from N-1 to N/2
    seqLength := N-i
    isOrbit? := true
    foreach index s from 0 to seqLength-1
        if M[N-1-s] != M[N-1-seqLength-s] then
            isOrbit? := false
    if isOrbit? then
       append(K, i)

The longest orbit is, of course, the last entry added to K. The algorithm is O(n^2/4) or so. It is, essentially, a modified subsequence-search algorithm.

share|improve this answer
This is pretty nerdy – Ethan Apr 29 '11 at 23:48
@Ethan, this may not be nerd-exchange, but he gets an upvote from me for providing good search fodder for the asker. – Mike Samuel Apr 30 '11 at 0:13

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.