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?
|
|
If its a number, start at the end. Find the sequence for which the last 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 |
|||
|
|
|
Depending on where this sequence is coming from, this might be useful. |
|||
|
|
|
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:
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. |
|||||
|