Cycle detection
In computer science, cycle detection or cycle finding is the algorithmic problem of finding a cycle in a sequence of iterated function values.
For any function that maps a finite set to itself, and any initial value in, the sequence of iterated function values
must eventually use the same value twice: there must be some pair of distinct indices and such that. Once this happens, the sequence must continue periodically, by repeating the same sequence of values from to. Cycle detection is the problem of finding and, given and.
Several algorithms for finding cycles quickly and with little memory are known. Robert W. Floyd's tortoise and hare algorithm moves two pointers at different speeds through the sequence of values until they both point to equal values. Alternatively, Brent's algorithm is based on the idea of exponential search. Both Floyd's and Brent's algorithms use only a constant number of memory cells, and take a number of function evaluations that is proportional to the distance from the start of the sequence to the first repetition. Several other algorithms trade off larger amounts of memory for fewer function evaluations.
The applications of cycle detection include testing the quality of pseudorandom number generators and cryptographic hash functions, computational number theory algorithms, detection of infinite loops in computer programs and periodic configurations in cellular automata, automated shape analysis of linked list data structures, detection of deadlocks for transactions management in DBMS.
Example
The figure shows a function that maps the set to itself. If one starts from and repeatedly applies, one sees the sequence of valuesThe cycle in this value sequence is.
Definitions
Let be any finite set, be any function from to itself, and be any element of. For any, let. Let be the smallest index such that the value reappears infinitely often within the sequence of values, and let be the smallest positive integer such that. The cycle detection problem is the task of finding and .One can view the same problem graph-theoretically, by constructing a functional graph the vertices of which are the elements of and the edges of which map an element to the corresponding function value, as shown in the figure. The set of vertices reachable from starting vertex form a subgraph with a shape resembling the Greek letter rho : a path of length from to a cycle of vertices.
Computer representation
Generally, will not be specified as a table of values, the way it is shown in the figure above. Rather, a cycle detection algorithm may be given access either to the sequence of values, or to a subroutine for calculating. The task is to find and while examining as few values from the sequence or performing as few subroutine calls as possible. Typically, also, the space complexity of an algorithm for the cycle detection problem is of importance: we wish to solve the problem while using an amount of memory significantly smaller than it would take to store the entire sequence.In some applications, and in particular in Pollard's rho algorithm for integer factorization, the algorithm has much more limited access to and to. In Pollard's rho algorithm, for instance, is the set of integers modulo an unknown prime factor of the number to be factorized, so even the size of is unknown to the algorithm.
To allow cycle detection algorithms to be used with such limited knowledge, they may be designed based on the following capabilities. Initially, the algorithm is assumed to have in its memory an object representing a pointer to the starting value. At any step, it may perform one of three actions: it may copy any pointer it has to another object in memory, it may apply and replace any of its pointers by a pointer to the next object in the sequence, or it may apply a subroutine for determining whether two of its pointers represent equal values in the sequence. The equality test action may involve some nontrivial computation: for instance, in Pollard's rho algorithm, it is implemented by testing whether the difference between two stored values has a nontrivial greatest common divisor with the number to be factored. In this context, by analogy to the pointer machine model of computation, an algorithm that only uses pointer copying, advancement within the sequence, and equality tests may be called a pointer algorithm.
Algorithms
If the input is given as a subroutine for calculating, the cycle detection problem may be trivially solved using only function applications, simply by computing the sequence of values and using a data structure such as a hash table to store these values and test whether each subsequent value has already been stored. However, the space complexity of this algorithm is proportional to, unnecessarily large. Additionally, to implement this method as a pointer algorithm would require applying the equality test to each pair of values, resulting in quadratic time overall. Thus, research in this area has concentrated on two goals: using less space than this naive algorithm, and finding pointer algorithms that use fewer equality tests.Floyd's Tortoise and Hare
Floyd's cycle-finding algorithm is a pointer algorithm that uses only two pointers, which move through the sequence at different speeds.It is also called the "tortoise and the hare algorithm", alluding to Aesop's fable of The Tortoise and the Hare.
The algorithm is named after Robert W. Floyd, who was credited with its invention by Donald Knuth. However, the algorithm does not appear in Floyd's published work, and this may be a misattribution: Floyd describes algorithms for listing all simple cycles in a directed graph in a 1967 paper, but this paper does not describe the cycle-finding problem in functional graphs that is the subject of this article. In fact, Knuth's statement, attributing it to Floyd, without citation, is the first known appearance in print, and it thus may be a folk theorem, not attributable to a single individual.
The key insight in the algorithm is as follows. If there is a cycle, then, for any integers and,, where is the length of the loop to be found and is the index of the first element of the cycle. Based on this, it can then be shown that for some if and only if.
Thus, the algorithm only needs to check for repeated values of this special form, one twice as far from the start of the sequence as the other, to find a period of a repetition that is a multiple of.
Once is found, the algorithm retraces the sequence from its start to find the first repeated value in the sequence, using the fact that divides and therefore that. Finally, once the value of is known it is trivial to find the length of the shortest repeating cycle, by searching for the first position for which.
The algorithm thus maintains two pointers into the given sequence, one at, and the other at. At each step of the algorithm, it increases by one, moving the tortoise one step forward and the hare two steps forward in the sequence, and then compares the sequence values at these two pointers. The smallest value of for which the tortoise and hare point to equal values is the desired value.
The following Python code shows how this idea may be implemented as an algorithm.
def floyd:
# Main phase of algorithm: finding a repetition x_i = x_2i.
# The hare moves twice as quickly as the tortoise and
# the distance between them increases by 1 at each step.
# Eventually they will both be inside the cycle and then,
# at some point, the distance between them will be
# divisible by the period λ.
tortoise = f # f is the element/node next to x0.
hare = f
while tortoise != hare:
tortoise = f
hare = f
# At this point the tortoise position, ν, which is also equal
# to the distance between hare and tortoise, is divisible by
# the period λ. So hare moving in circle one step at a time,
# and tortoise moving towards the circle, will
# intersect at the beginning of the circle. Because the
# distance between them is constant at 2ν, a multiple of λ,
# they will agree as soon as the tortoise reaches index μ.
# Find the position μ of first repetition.
mu = 0
tortoise = x0
while tortoise != hare:
tortoise = f
hare = f # Hare and tortoise move at same speed
mu += 1
# Find the length of the shortest cycle starting from x_μ
# The hare moves one step at a time while tortoise is still.
# lam is incremented until λ is found.
lam = 1
hare = f
while tortoise != hare:
hare = f
lam += 1
return lam, mu
This code only accesses the sequence by storing and copying pointers, function evaluations, and equality tests; therefore, it qualifies as a pointer algorithm. The algorithm uses operations of these types, and storage space.
Brent's algorithm
described an alternative cycle detection algorithm that, like the tortoise and hare algorithm, requires only two pointers into the sequence. However, it is based on a different principle: searching for the smallest power of two that is larger than both and. For, the algorithm compares with each subsequent sequence value up to the next power of two, stopping when it finds a match. It has two advantages compared to the tortoise and hare algorithm: it finds the correct length of the cycle directly, rather than needing to search for it in a subsequent stage, and its steps involve only one evaluation of rather than three.The following Python code shows how this technique works in more detail.
def brent:
# main phase: search successive powers of two
power = lam = 1
tortoise = x0
hare = f # f is the element/node next to x0.
while tortoise != hare:
if power lam: # time to start a new power of two?
tortoise = hare
power *= 2
lam = 0
hare = f
lam += 1
# Find the position of the first repetition of length λ
tortoise = hare = x0
for i in range:
# range produces a list with the values 0, 1,..., lam-1
hare = f
# The distance between the hare and tortoise is now λ.
# Next, the hare and tortoise move at same speed until they agree
mu = 0
while tortoise != hare:
tortoise = f
hare = f
mu += 1
return lam, mu
Like the tortoise and hare algorithm, this is a pointer algorithm that uses tests and function evaluations and storage space.
It is not difficult to show that the number of function evaluations can never be higher than for Floyd's algorithm.
Brent claims that, on average, his cycle finding algorithm runs around 36% more quickly than Floyd's and that it speeds up the Pollard rho algorithm by around 24%. He also performs an average case analysis for a randomized version of the algorithm in which the sequence of indices traced by the slower of the two pointers is not the powers of two themselves, but rather a randomized multiple of the powers of two. Although his main intended application was in integer factorization algorithms, Brent also discusses applications in testing pseudorandom number generators.
Gosper's algorithm
's algorithm finds the period, and the lower and upper bound of the starting point, and, of the first cycle. The difference between the lower and upper bound is of the same order as the period, eg..The main feature of Gosper's algorithm is that it never backs up to reevaluate the generator function, and is economical in both space and time. It could be roughly described as a parallel version of Brent's algorithm. While Brent's algorithm gradually increases the gap between the tortoise and hare, Gosper's algorithm uses several tortoises, which are roughly exponentially spaced. According to the note in , this algorithm will detect repetition before the third occurrence of any value, eg. the cycle will be iterated at most twice. This note also states that it is sufficient to store previous values; however, the provided implementation stores values. For example: the function values are 32-bit integers, and it is known a priori that the second iteration of the cycle ends after at most 232 function evaluations since the beginning, viz.. Then it suffices to store 33 32-bit integers.
Upon the -th evaluation of the generator function, the algorithm compares the generated value with previous values; observe that goes up to at least and at most. Therefore, the time complexity of this algorithm is. Since it stores values, its space complexity is. This is under the usual assumption, present throughout this article, that the size of the function values is constant. Without this assumption, the space complexity is since we need at least distinct values and thus the size of each value is.
Time–space tradeoffs
A number of authors have studied techniques for cycle detection that use more memory than Floyd's and Brent's methods, but detect cycles more quickly. In general these methods store several previously-computed sequence values, and test whether each new value equals one of the previously-computed values. In order to do so quickly, they typically use a hash table or similar data structure for storing the previously-computed values, and therefore are not pointer algorithms: in particular, they usually cannot be applied to Pollard's rho algorithm. Where these methods differ is in how they determine which values to store. Following Nivasch, we survey these techniques briefly.- Brent already describes variations of his technique in which the indices of saved sequence values are powers of a number other than two. By choosing to be a number close to one, and storing the sequence values at indices that are near a sequence of consecutive powers of, a cycle detection algorithm can use a number of function evaluations that is within an arbitrarily small factor of the optimum.
- Sedgewick, Szymanski, and Yao provide a method that uses memory cells and requires in the worst case only function evaluations, for some constant, which they show to be optimal. The technique involves maintaining a numerical parameter, storing in a table only those positions in the sequence that are multiples of, and clearing the table and doubling whenever too many values have been stored.
- Several authors have described distinguished point methods that store function values in a table based on a criterion involving the values, rather than based on their positions. For instance, values equal to zero modulo some value might be stored. More simply, Nivasch credits D. P. Woodruff with the suggestion of storing a random sample of previously seen values, making an appropriate random choice at each step so that the sample remains random.
- Nivasch describes an algorithm that does not use a fixed amount of memory, but for which the expected amount of memory used is logarithmic in the sequence length. An item is stored in the memory table, with this technique, when no later item has a smaller value. As Nivasch shows, the items with this technique can be maintained using a stack data structure, and each successive sequence value need be compared only to the top of the stack. The algorithm terminates when the repeated sequence element with smallest value is found. Running the same algorithm with multiple stacks, using random permutations of the values to reorder the values within each stack, allows a time–space tradeoff similar to the previous algorithms. However, even the version of this algorithm with a single stack is not a pointer algorithm, due to the comparisons needed to determine which of two values is smaller.
Applications
Cycle detection has been used in many applications.- Determining the cycle length of a pseudorandom number generator is one measure of its strength. This is the application cited by Knuth in describing Floyd's method. Brent describes the results of testing a linear congruential generator in this fashion; its period turned out to be significantly smaller than advertised. For more complex generators, the sequence of values in which the cycle is to be found may not represent the output of the generator, but rather its internal state.
- Several number-theoretic algorithms are based on cycle detection, including Pollard's rho algorithm for integer factorization and his related kangaroo algorithm for the discrete logarithm problem.
- In cryptographic applications, the ability to find two distinct values xμ−-1 and xλ+μ−-1 mapped by some cryptographic function ƒ to the same value xμ may indicate a weakness in ƒ. For instance, Quisquater and Delescaille apply cycle detection algorithms in the search for a message and a pair of Data Encryption Standard keys that map that message to the same encrypted value; Kaliski, Rivest, and Sherman also use cycle detection algorithms to attack DES. The technique may also be used to find a collision in a cryptographic hash function.
- Cycle detection may be helpful as a way of discovering infinite loops in certain types of computer programs.
- Periodic configurations in cellular automaton simulations may be found by applying cycle detection algorithms to the sequence of automaton states.
- Shape analysis of linked list data structures is a technique for verifying the correctness of an algorithm using those structures. If a node in the list incorrectly points to an earlier node in the same list, the structure will form a cycle that can be detected by these algorithms. In Common Lisp, the S-expression printer, under control of the
*print-circle*
variable, detects circular list structure and prints it compactly. - Teske describes applications in computational group theory: determining the structure of an Abelian group from a set of its generators. The cryptographic algorithms of Kaliski et al. may also be viewed as attempting to infer the structure of an unknown group.
- briefly mentions an application to computer simulation of celestial mechanics, which she attributes to William Kahan. In this application, cycle detection in the phase space of an orbital system may be used to determine whether the system is periodic to within the accuracy of the simulation.
- In Mandelbrot Set fractal generation some performance techniques are used to speed up the image generation. One of them is called "period checking" and it basically consists on finding the cycles in a point orbit. This article describes the "" techniche and you can find a better explanation. In order to implement this some cycle detection algorithms have to be implemented.