Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eliahkagan/sorts
a demo and limited benchmark of sorting algorithms
https://github.com/eliahkagan/sorts
Last synced: about 24 hours ago
JSON representation
a demo and limited benchmark of sorting algorithms
- Host: GitHub
- URL: https://github.com/eliahkagan/sorts
- Owner: EliahKagan
- License: cc0-1.0
- Created: 2019-07-21T23:31:15.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-14T06:32:04.000Z (11 months ago)
- Last Synced: 2024-04-16T01:55:50.786Z (7 months ago)
- Language: C++
- Size: 46.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# Sorts - a demo and limited benchmark of sorting algorithms
*Written in 2018, 2019 by Eliah Kagan \.*
*To the extent possible under law, the author(s) have dedicated all copyright
and related and neighboring rights to this software to the public domain
worldwide. This software is distributed without any warranty.**You should have received a copy of the CC0 Public Domain Dedication along with
this software. If not, see
.*This project implements a number of sorting algorithms and benchmarks them
against one another and those provided by the standard-library implementation.Currently all the interesting code is in one file, `sorts.cpp`.
See also [**Shellsort**](https://github.com/EliahKagan/Shellsort), a C# program that is similar to this but less extensive.