Matheus.SortAlgorithms
2.0.0
See the version list below for details.
dotnet add package Matheus.SortAlgorithms --version 2.0.0
NuGet\Install-Package Matheus.SortAlgorithms -Version 2.0.0
<PackageReference Include="Matheus.SortAlgorithms" Version="2.0.0" />
<PackageVersion Include="Matheus.SortAlgorithms" Version="2.0.0" />
<PackageReference Include="Matheus.SortAlgorithms" />
paket add Matheus.SortAlgorithms --version 2.0.0
#r "nuget: Matheus.SortAlgorithms, 2.0.0"
#:package Matheus.SortAlgorithms@2.0.0
#addin nuget:?package=Matheus.SortAlgorithms&version=2.0.0
#tool nuget:?package=Matheus.SortAlgorithms&version=2.0.0
๐ฆ 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
Planned for future versions:
- ๐ MergeSort
- ๐ BubbleSort
- ๐ InsertionSort
- ๐ SelectionSort
๐ 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
{
QuickSort,
HeapSort
// Future implementations: MergeSort, BubbleSort, InsertionSort, SelectionSort
}
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.
| Product | Versions 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. |
-
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.