Rumble.Bozosort 0.0.2

dotnet add package Rumble.Bozosort --version 0.0.2
                    
NuGet\Install-Package Rumble.Bozosort -Version 0.0.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Rumble.Bozosort" Version="0.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rumble.Bozosort" Version="0.0.2" />
                    
Directory.Packages.props
<PackageReference Include="Rumble.Bozosort" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Rumble.Bozosort --version 0.0.2
                    
#r "nuget: Rumble.Bozosort, 0.0.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Rumble.Bozosort@0.0.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Rumble.Bozosort&version=0.0.2
                    
Install as a Cake Addin
#tool nuget:?package=Rumble.Bozosort&version=0.0.2
                    
Install as a Cake Tool

bozosort

Implementation of the bozosort sorting algorithm.

This repository contains the Rumble.Bozosort class library and Rumble.Bozosort.Demo.Runnable console application. All the content in the repository is an original work created as a personal project, and serves as a .NET C# adaptation of the infamous bozosort algorithm.

NuGet Package: Rumble.Bozosort

Description

The Rumble.Bozosort is a .NET C# implementation of Bozosort — a highly inefficient sorting algorithm that operates by repeatedly selecting two elements of the list at random and swapping them if they are in the wrong order. This process continues until the entire list is sorted. Due to its random nature, Bozosort has an unbounded worst-case time complexity, and is typically used as a humorous example of how not to design an algorithm.

The Rumble.Bozosort.Demo.Runnable is a console application demonstrating the usage of the Rumble.Bozosort library.

Usage

WARNING: The Rumble.Bozosort library is NOT intended for use in any real-world, production-level software. It is highly inefficient and is provided here for educational and entertainment purposes only.

Rumble.Bozosort Library

using System;
using Rumble.Bozosort;

var sequence = new int[] { 3, 2, 4, 1, 5 };
var sorter = Bozosorter<int>.Factory.New();

sorter.Started += (sender, args) => Console.WriteLine($"Sorting has been started");
sorter.Completed += (sender, args) => Console.WriteLine($"Sorting has been completed in {args.ElapsedTime.TotalSeconds} seconds");
sorter.IterationCompleted += (sender, args) => Console.WriteLine
(
    $"Iteration: {args.IterationNumber}. " +
    $"Changes: {args.FirstElement} <=> {args.SecondElement}. " +
    $"Sequence: {string.Join(separator: " ", args.Sequence)}."
);

sorter.Run(sequence);

Rumble.Bozosort.Demo.Runnable Console Application

After building the solution, run the Rumble.Bozosort.Demo.Runnable console application. It demonstrates a simple usage of the Rumble.Bozosort library.

History

The original creator of the bozosort algorithm isn't definitively known, as it's more of a concept used to illustrate an inefficient sorting method rather than a formally recognized algorithm.

Note

This project is made out of pure love for .NET C#. It serves as a pet-project written just-for-fun. All the code here is 100% original.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.0.2 214 6/29/2023
0.0.1 179 6/29/2023