plf_indiesort
Sorter
A sorting algorithm that optimizes performance on non-random access containers and large data types
A sort wrapper enabling both use of random-access sorting on non-random access containers, and increased performance for the sorting of large types.
19 stars
4 watching
2 forks
Language: C++
last commit: 8 months ago
Linked from 1 awesome list
sortsorting
Related projects:
Repository | Description | Stars |
---|---|---|
bonzaithepenguin/wikisort | An optimized sorting algorithm with O(1) memory usage. | 1,268 |
timsort/cpp-timsort | A C++ implementation of TimSort, an O(n log n) stable sorting algorithm. | 299 |
addyosmani/bubblesort | A bubble sort algorithm implementation with a comparison function for sorting arrays of elements in ascending or descending order | 106 |
mattreecebentley/plf_list | A high-performance alternative to the C++ standard library's list container | 151 |
azat-io/eslint-plugin-perfectionist | A plugin for ESLint that enforces consistent sorting of various data in code | 1,932 |
mattreecebentley/plf_stack | A C++ data container optimized for stack-based operations with improved performance compared to standard library containers. | 63 |
yourbasic/radix | A fast string sorting algorithm implemented in Go. | 192 |
mattiash/angular-tablesort | A tool for adding sorting functionality to AngularJS tables in a straightforward and flexible way | 185 |
dancouper/natural_sort | A sorting function for natural ordering of strings containing numbers | 14 |
scandum/blitsort | An in-place sorting algorithm that partitions arrays recursively using rotations and auxiliary memory management | 701 |
sindresorhus/alpha-sort | A utility function for sorting arrays of strings in various natural and case-insensitive orders | 39 |
christianbach/tablesorter | A client-side table sorting plugin that provides flexible and customizable sorting capabilities for HTML tables. | 1,030 |
stoeffel/mergesort | An efficient sorting algorithm with O(n log n) complexity. | 20 |
scandum/quadsort | A branchless stable adaptive mergesort algorithm with minimal comparisons and optimal performance on ordered data | 2,135 |
bitshifter/radixsort | Provides an implementation of radix sort in C and C++ with various optimization techniques. | 6 |