AllAlgorithms / c

Implementation of All ▲lgorithms in C Programming Language
https://github.com/AllAlgorithms/c
MIT License
1.44k stars 520 forks source link

Bogo_Sort.c #412

Closed i-pj closed 1 month ago

i-pj commented 9 months ago

Bogo Sort is a highly inefficient and impractical sorting algorithm. It works by repeatedly shuffling the elements of an array until the array is sorted. The name "Bogo" is a play on the word "bogus," indicating that this sorting algorithm is not suitable for any practical use and is primarily used for educational purposes to illustrate the concept of a sorting algorithm

I am creating a pull request for...