Matheus.SortAlgorithms 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Matheus.SortAlgorithms --version 1.0.1
                    
NuGet\Install-Package Matheus.SortAlgorithms -Version 1.0.1
                    
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="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Matheus.SortAlgorithms" Version="1.0.1" />
                    
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 1.0.1
                    
#r "nuget: Matheus.SortAlgorithms, 1.0.1"
                    
#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@1.0.1
                    
#: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=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Matheus.SortAlgorithms&version=1.0.1
                    
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

Planned for future versions:

  • ๐Ÿ”œ MergeSort
  • ๐Ÿ”œ HeapSort
  • ๐Ÿ”œ BubbleSort
  • ๐Ÿ”œ InsertionSort
  • ๐Ÿ”œ SelectionSort

๐Ÿš€ Installation

Add the NuGet package to your project:

dotnet add package Sort.Domain

Or via Package Manager Console:

Install-Package Sort.Domain

๐Ÿ“– Usage

Example with QuickSort

using Sort.Domain.Algorithms.Quicksort;
using Sort.Domain.Algorithms.Shared;

class Program
{
    static void Main()
    {
        var sorter = new QuickSortAlgorithm();

        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

๐Ÿ“‚ Project Structure

Sort.Domain
 โ”œโ”€โ”€ Algorithms
 โ”‚    โ”œโ”€โ”€ Abstractions   # Interfaces (ISortAlgorithm)
 โ”‚    โ”œโ”€โ”€ Quicksort      # QuickSort implementation
 โ”‚    โ””โ”€โ”€ ... (other algorithms coming soon)
 โ”‚
 โ”œโ”€โ”€ Shared              # Common objects (SortResult)
 โ”œโ”€โ”€ Sort.Domain.csproj
 โ””โ”€โ”€ README.md

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

ISortAlgorithm

Interface for all sorting algorithms:

public interface ISortAlgorithm
{
    SortResult Sort(List<int> numbers);
}

QuickSortAlgorithm

QuickSort implementation:

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

SortResult

Represents the output of a sorting operation:

public class SortResult
{
    public IEnumerable<int>? SortedList { get; set; }
    public bool Success { get; set; }
}

๐Ÿงพ License

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

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