Skip to content

A visualized and multithreaded implementation of the bogosort algorithm in C#. 🎲

License

Notifications You must be signed in to change notification settings

qazer2687/bogosort

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bogosort

This repository contains a visualized and multithreaded implementation of the Bogosort algorithm in C#.

Procedure

  1. Check if the array is sorted, terminate if so.
  2. If the array is not sorted, randomly permute its elements.
  3. Return to the first step and repeat until the array is sorted.

Performance

Average Best Worst Space
Ø(n*n!) Ω(n) unbounded O(1)

Preview

License

This project is licensed under the GNU General Public License v3.0 (GPLv3).

About

A visualized and multithreaded implementation of the bogosort algorithm in C#. 🎲

Topics

Resources

License

Stars

Watchers

Forks

Languages