Matheus.SortAlgorithms 2.1.0

dotnet add package Matheus.SortAlgorithms --version 2.1.0
                    
NuGet\Install-Package Matheus.SortAlgorithms -Version 2.1.0
                    
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="Matheus.SortAlgorithms" Version="2.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Matheus.SortAlgorithms" Version="2.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Matheus.SortAlgorithms" />
                    
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 Matheus.SortAlgorithms --version 2.1.0
                    
#r "nuget: Matheus.SortAlgorithms, 2.1.0"
                    
#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 Matheus.SortAlgorithms@2.1.0
                    
#: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=Matheus.SortAlgorithms&version=2.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Matheus.SortAlgorithms&version=2.1.0
                    
Install as a Cake Tool

๐Ÿ“ฆ Matheus.SortAlgorithms

A lightweight .NET library that provides implementations of the most well-known sorting algorithms.
It is designed to be modular, extensible, and easy to use.

Currently available:

  • โœ… QuickSort
  • โœ… HeapSort
  • โœ… BubbleSort
  • โœ… SelectionSort
  • โœ… SelectionSort
  • โœ… MergeSort

๐Ÿš€ Installation

Add the NuGet package to your project:

dotnet add package Matheus.SortAlgorithms

Or via Package Manager Console:

Install-Package Matheus.SortAlgorithms

๐Ÿ“– Usage

Example with QuickSort

using Matheus.SortAlgorithms.Core;

class Program
{
    static void Main()
    {
        var sorter = new Sorter(SortAlgorithms.QuickSort);

        var input = new List<int> { 10, 7, 8, 9, 1, 5 };
        var result = sorter.Sort(input);

        Console.WriteLine("Input: " + string.Join(", ", input));
        Console.WriteLine("Sorted: " + string.Join(", ", result.SortedList));
        Console.WriteLine("Success: " + result.Success);
    }
}

โœ… Output:

Input: 10, 7, 8, 9, 1, 5
Sorted: 1, 5, 7, 8, 9, 10
Success: True

๐Ÿง‘โ€๐Ÿ’ป Public API

Sorter

Main entry point to run sorting algorithms:

var sorter = new Sorter(SortAlgorithms.QuickSort);
var result = sorter.Sort(new List<int> { 5, 2, 9 });

SortAlgorithms

Enum that lists the available algorithms:

public enum SortAlgorithms
{
    /// <summary>
        /// QuickSort algorithm.
        /// Average complexity: O(n log n), worst-case: O(nยฒ).
        /// Recursive, divide-and-conquer, not stable.
        /// Best for general-purpose in-memory sorting.
        /// </summary>
        QuickSort = 0,

        /// <summary>
        /// HeapSort algorithm.
        /// Complexity: O(n log n) in all cases.
        /// In-place, non-recursive, not stable.
        /// Useful when stable sorting is not required.
        /// </summary>
        HeapSort = 1,

        /// <summary>
        /// BubbleSort algorithm.
        /// Complexity: O(nยฒ) in average and worst case.
        /// Simple, stable, suitable for educational purposes or small datasets.
        /// </summary>
        BubbleSort = 2,

        /// <summary>
        /// SelectionSort algorithm.
        /// Complexity: O(nยฒ) in all cases.
        /// In-place, not stable, minimal swaps.
        /// Often used in situations where write operations are expensive.
        /// </summary>
        SelectionSort = 3,

        /// <summary>
        /// InsertionSort algorithm.
        /// Complexity: O(nยฒ) average/worst, O(n) best case for nearly sorted lists.
        /// Stable, adaptive, efficient for small or partially sorted datasets.
        /// </summary>
        InsertionSort = 4,

        /// <summary>
        /// MergeSort algorithm.
        /// Complexity: O(n log n) in all cases.
        /// Stable, recursive, requires additional memory for merging.
        /// Ideal for large datasets and when stability is important.
        /// </summary>
        MergeSort = 5,
}

ISortResult

Represents the output of a sorting operation:

public interface ISortResult
{
    /// <summary>
    /// Gets or sets the sorted list of integers.
    /// Returns <c>null</c> if the sorting process failed.
    /// </summary>
    public IEnumerable<int>? SortedList { get; set; }

    /// <summary>
    /// Gets or sets a value indicating whether the sorting operation was successful.
    /// </summary>
    public bool Success { get; set; }

    /// <summary>
    /// Gets or sets the execution time of the sorting algorithm, in milliseconds.
    /// </summary>
    public long ExecutionTimeMilliseconds { get; set; }
}

๐Ÿงพ License

Distributed under the MIT License. See LICENSE for more information.

๐Ÿ“‘ Changelog

See all changes in the CHANGELOG.md.

๐Ÿ”ฎ Planned Features (Future Versions)

Weโ€™re constantly improving Matheus.SortAlgorithms! Hereโ€™s whatโ€™s coming in the next releases:

Algorithm / Feature Priority Description Use Case
RadixSort ๐Ÿ”œ High Non-comparative, integer-based sorting. Extremely fast for large datasets. Sorting large numeric lists quickly.
CountingSort ๐Ÿ”œ High Non-comparative algorithm suitable for integers in a limited range. Performance benchmarking; educational purposes.
ShellSort ๐Ÿ”œ Medium-High Improvement over InsertionSort. Efficient for partially sorted arrays. Medium-sized lists, learning algorithm optimizations.
CocktailSort ๐Ÿ”œ Low-Medium Bidirectional BubbleSort variant. Stable for small datasets. Educational and comparison purposes.
Support for other list types ๐Ÿ”œ High Currently List<int> only. Future support for List<double>, List<string>, and generic types with IComparable<T>. Greater flexibility and usability across different scenarios.
Benchmarking between algorithms ๐Ÿ”œ High Automatic comparison of execution time, swaps, and comparisons across multiple datasets. Performance analysis, choosing the best algorithm for your dataset.

๐Ÿ’ก Notes:

  • Algorithms marked ๐Ÿ”œ are planned for upcoming versions.
  • Benchmarking will include different dataset types: random, sorted, reverse-sorted, nearly sorted, and uniform.
  • Future versions will also allow custom comparators and ascending/descending order selection.
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.
  • net8.0

    • No dependencies.

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
2.1.0 233 10/9/2025
2.0.0 202 10/6/2025
1.0.1 208 10/2/2025
1.0.0 198 2/11/2025