About 1,310 results
Open links in new tab
  1. Bogosort - Wikipedia

    A hypothetical sorting algorithm based on bogosort, created as an in-joke among computer scientists. The algorithm generates a random permutation of its input using a quantum source of entropy, …

  2. Sort Visualizer - Bogo Sort

    Bogo Sort (also called Stupid Sort) is an iterative sorting algorithm particularly inefficient. It's based on randomly shufflying the elements of the data structure and then checking if they are correctly sorted. …

  3. BogoSort or Permutation Sort - GeeksforGeeks

    Aug 21, 2025 · BogoSort also known as permutation sort, stupid sort, slow sort, shotgun sort or monkey sort is a particularly ineffective algorithm one person can ever imagine.

  4. Bogosort - Sorting Wiki

    Dec 2, 2025 · A variation of the Bogosort algorithm by PCBoy. It works by checking if the list is sorted, and if not, pulls a random element to the start of the list (i.e. the head).

  5. Bogo Sort Algorithm Animation - algostructure.com

    Animation of the Bogo Sort Algorithm and information about the implementation, time complexity, needed memory and stability.

  6. Bogosort - kirupa.com

    Today, we are going to take a detour and learn about a horribly inefficient algorithm known as Bogosort (aka permutation sort, stupid sort, or monkey sort). The reason we are learning about this algorithm …

  7. Mastering Bogo Sort: A Comprehensive Guide

    Jun 13, 2025 · Bogo Sort is a randomized sorting algorithm that works by repeatedly shuffling the elements of the input list until they are in the correct order. This method is based on the principle that …

  8. bogosort

    Apr 5, 2023 · Definition of bogosort, possibly with links to more information and implementations.

  9. BogoSort: The Absurd Algorithm That Sorts by Luck - Medium

    Feb 6, 2025 · In this article, we’ll explore the inner workings of BogoSort, write some Python code to bring it to life, and reflect on why it’s both fascinating and utterly impractical.

  10. Bogo Sort - The Algorithms

    """ This is a pure Python implementation of the bogosort algorithm, also known as permutation sort, stupid sort, slowsort, shotgun sort, or monkey sort. Bogosort generates random permutations until it …