|
TrSort
v0.3.0
A novel sorting algorithm I've invented
|
Functions | |
| template<typename T , std::size_t Extent = std::dynamic_extent, typename Real = long double> | |
| void | sort (std::span< T, Extent > data) |
| Stable sorts the input dating using the Transposition Sort sorting algorithm. More... | |
This file forms part of tr-sort, a novel sorting algorithm
Copyright Joshua Saxby 2021. All rights reserved.
This is closed-source software and may not be produced in either part or in full, in either source or binary form, without the express written consent of the copyright holder.
| void com::saxbophone::tr_sort::sort | ( | std::span< T, Extent > | data | ) |
Stable sorts the input dating using the Transposition Sort sorting algorithm.
| T | data typed stored in the iterable to sort |
| Extent | size of iterable (leave default for dynamic size) |
| Real | data type used by the algorithm for real numbers |
| [out] | data | iterable to sort |