https://github.com/amari-calipso/ths-sort
thsSort - a simple sorting library
https://github.com/amari-calipso/ths-sort
algorithms array-manipulation cpp distribution-sort distribution-sorting java merge-sort mergesort python python3 quick-sort quicksort rust sorting sorting-algorithms vlang
Last synced: 4 months ago
JSON representation
thsSort - a simple sorting library
- Host: GitHub
- URL: https://github.com/amari-calipso/ths-sort
- Owner: amari-calipso
- License: mit
- Created: 2021-05-24T19:58:35.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-08T20:43:54.000Z (6 months ago)
- Last Synced: 2024-12-19T18:49:18.360Z (6 months ago)
- Topics: algorithms, array-manipulation, cpp, distribution-sort, distribution-sorting, java, merge-sort, mergesort, python, python3, quick-sort, quicksort, rust, sorting, sorting-algorithms, vlang
- Language: Java
- Homepage:
- Size: 76.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ths-sort
thsSort - a simple sorting library i made for school projectsthis library contains three main algorithms:
- Median Of Sixteen Adaptive Quicksort (as "`sort`")
- Adaptive MergeSort (as "`stableSort`")
- staticSort (as "`staticSort`", please note it only works on numeric types)alongside with secondary algorithms, used inside the main ones.