Random permutation
A random permutation is a sequence where any order of its items is equally likely at random, that is, it is a permutation-valued random variable of a set of objects. The use of random permutations is common in games of chance and in randomized algorithms in coding theory, cryptography, and simulation. A good example of a random permutation is the fair shuffling of a standard deck of cards: this is ideally a random permutation of the 52 cards.
Computation of random permutations
Entry-by-entry methods
One algorithm for generating a random permutation of a set of size n uniformly at random, i.e., such that each of the n! permutations is equally likely to appear, is to generate a sequence by uniformly randomly selecting an integer between 1 and n, sequentially and without replacement n times, and then to interpret this sequence as the permutationshown here in two-line notation.
An inefficient brute-force method for sampling without replacement could select from the numbers between 1 and n at every step, retrying the selection whenever the random number picked is a repeat of a number already selected until selecting a number that has not yet been selected. The expected number of retries per step in such cases will scale with the inverse of the fraction of numbers already selected, and the overall number of retries as the sum of those inverses, making this an inefficient approach.
Such retries can be avoided using an algorithm where, on each ith step when x1,..., xi − 1 have already been chosen, one chooses a uniformly random number j from between 1 and n − i + 1 and sets xi equal to the jth largest of the numbers that have not yet been selected. This selects uniformly randomly among the remaining numbers at every step without retries.
Fisher-Yates shuffles
A simple algorithm to generate a permutation of n items uniformly at random without retries, known as the Fisher–Yates shuffle, is to start with any permutation, and then go through the positions 0 through n − 2, and for each position i swap the element currently there with a randomly chosen element from positions i through n − 1, inclusive. Any permutation of n elements will be produced by this algorithm with probability exactly 1/n!, thus yielding a uniform distribution of the permutations.unsigned uniform; /* Returns a random integer 0 <= uniform <= m-1 with uniform distribution */
void initialize_and_permute
If the
uniform function is implemented simply as random % then there will be a bias in the distribution of permutations if the number of return values of random is not a multiple of m. However, this effect is small if the number of return values of random is orders of magnitude greater than m.