Neha Patil (Editor)

Bogosort

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Class
  
Sorting algorithm

Best-case performance
  
O(n)

Worst-case space complexity
  
O(n)

Data structure
  
Array

Average performance
  
O((n+1)!)

Worst-case performance
  
Unbounded (randomized version), O((n+1)!) (deterministic version)

In computer science, bogosort (also permutation sort, stupid sort, slowsort, shotgun sort or monkey sort) is a highly ineffective sorting algorithm based on the generate and test paradigm. The algorithm successively generates permutations of its input until it finds one that is sorted. It is not useful for sorting, but may be used for educational purposes, to contrast it with more efficient algorithms.

Contents

Two versions of the algorithm exist: a deterministic version that enumerates all permutations until it hits a sorted one, and a randomized version that randomly permutes its input. An analogy for the working of the latter version is to sort a deck of cards by throwing the deck into the air, picking the cards up at random, and repeating the process until the deck is sorted. Its name comes from the word bogus.

Description of the algorithm

The following is a description of the randomized algorithm in pseudocode:

while not isInOrder(deck): shuffle(deck)

Here is a code example with shuffle in Standard ML:

Running time and termination

If all elements to be sorted are distinct, the expected number of comparisons performed in the average case by randomized bogosort is asymptotically equivalent to ( e 1 ) n ! , and the expected number of swaps in the average case equals ( n 1 ) n ! . 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 n 1 , 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.

Gorosort
is a sorting algorithm introduced in the 2011 Google Code Jam. As long as the list is not in order, a subset of all elements is randomly permuted. If this subset is optimally chosen each time this is performed, the expected value of the total number of times this operation needs to be done is equal to the number of misplaced elements.
Bogobogosort
is an algorithm that was designed not to succeed before the heat death of the universe on any sizable list. It works by recursively calling itself with smaller and smaller copies of the beginning of the list to see if they are sorted. The best case is a single element, which is always sorted. For other cases, it compares the last element to the maximum element from the previous elements in the list. If the last element is greater or equal, it checks if the order of the copy matches the previous version, copies back if not, and returns. Otherwise, it reshuffles the current copy of the list and goes back to its recursive check.
Bozosort
is another sorting algorithm based on random numbers. If the list is not in order, it picks two items at random and swaps them, then checks to see if the list is sorted. The running time analysis of a bozosort is more difficult, but some estimates are found in H. Gruber's analysis of "perversely awful" randomized sorting algorithms. O(n!) is found to be the expected average case.
Worstsort
is a pessimal sorting algorithm that is guaranteed to complete, assuming that the universe does not burn itself out before completion of the algorithm; however, there is no computable limit to the inefficiency of the sorting algorithm, and therefore it is more pessimal than the other algorithms described herein. The worstsort algorithm is based on a bad sorting algorithm, badsort . The badsort algorithm accepts two parameters: L , which is the list to be sorted, and k , which is a recursion depth. At recursion level k = 0 , badsort merely uses a common sorting algorithm, such as bubblesort, to sort its inputs and return the sorted list. That is to say, badsort ( L , 0 ) = bubblesort ( L ) . Therefore, badsort's time complexity is O ( n 2 ) if k = 0 . However, for any k > 0 , badsort ( L , k ) first generates P , the list of all permutations of L . Then, badsort calculates badsort ( P , k 1 ) , and returns the first element of the sorted P . To make worstsort truly pessimal, k may be assigned to the value of a computable increasing function such as f : N N (e.g. f ( n ) = A ( n , n ) , where A is Ackermann's function). Ergo, to sort a list arbitrarily badly, you would execute worstsort ( L , f ) = badsort ( L , f ( length ( L ) ) ) , where length ( L ) = number of elements in L . The resulting algorithm has complexity Ω ( ( n ! ( f ( n ) ) ) 2 ) , where n ! ( m ) = ( ( ( n ! ) ! ) ! ) ! = factorial of n iterated m times. This algorithm can be made as inefficient as we wish by picking a fast enough growing function f .

References

Bogosort Wikipedia