Bogosort (also stupid sort or slowsort) is a particularly ineffective sorting algorithm based on the generate and test paradigm. It is not useful for sorting, but may be used for educational purposes, to contrast it with other more realistic algorithms.

Bogosort takes on average attempts to select the right answer. Since each isSorted and shuffle are , bogosort takes time overall. The extreme time complexity is the reason this example is only sorting 5 items.

This implementation makes use of Is Sorted and Fisher-Yates shuffle.

Properties

  • space
  • time
  • Not stable
  • Not adaptive