AllAlgorithms / c

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

Bogo_Sort.c #412

Closed i-pj closed 5 months ago

i-pj commented 1 year 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...