Running Time and Termination
This sorting algorithm is probabilistic in nature. If all elements to be sorted are distinct, the expected number of comparisons in the average case is asymptotically equivalent to, and the expected number of swaps in the average case equals . The expected number of swaps grows faster than the expected number of comparisons, because if the elements are not in order, this will usually be discovered after only a few comparisons no matter how many elements there are, but the work of shuffling the collection is proportional to its size. In the worst case, the number of comparisons and swaps are both unbounded, for the same reason that a tossed coin might turn up heads any number of times in a row.
The best case occurs if the list as given is already sorted; in this case the expected number of comparisons is, and no swaps at all are carried out.
For any collection of fixed size, the expected running time of the algorithm is finite for much the same reason that the infinite monkey theorem holds: there is some probability of getting the right permutation, so given an unbounded number of tries it will almost surely eventually be chosen. However, if a pseudorandom number generator is used in place of a random source, it may never terminate, since these exhibit long-term cyclic behavior.
Read more about this topic: Bogosort
Famous quotes containing the words running, time and/or termination:
“Frances Stevens: Mother, this is why Ive had to spend half my life running around the world after youto keep men like this away from you.
Mrs. Stevens: Well after this, let me run my own interference. It looks like the blockers are having all the fun.”
—John Michael Hayes (b. 1919)
“For poetry was all written before time was, and whenever we are so finely organized that we can penetrate into that region where the air is music, we hear those primal warblings, and attempt to write them down, but we lose ever and anon a word, a verse, and substitute something of our own, and thus miswrite the poem.”
—Ralph Waldo Emerson (18031882)
“We hoped for a happy termination of this terrible war long before this; but God knows best, and has ruled otherwise.”
—Abraham Lincoln (18091865)