https://github.com/jtpeller/csort
various sorting algorithms written in c++
https://github.com/jtpeller/csort
cpp sort sorting sorting-algorithms visual-studio
Last synced: 4 months ago
JSON representation
various sorting algorithms written in c++
- Host: GitHub
- URL: https://github.com/jtpeller/csort
- Owner: jtpeller
- License: mit
- Created: 2021-12-23T00:48:14.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-15T00:45:20.000Z (about 1 year ago)
- Last Synced: 2025-07-09T23:30:09.310Z (12 months ago)
- Topics: cpp, sort, sorting, sorting-algorithms, visual-studio
- Language: C++
- Homepage:
- Size: 12.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# csort
Static library built in C/C++ that I built to get re-acquainted with the language.
- [csort](#csort)
- [Purpose](#purpose)
- [Important notes](#important-notes)
## Purpose
This is a library of five sorting algorithms meant moreso to get used to working with the language since it had been a long time since I worked with it.
I've got a repository [here](https://github.com/jtpeller/csort_test) that uses this library. Similar to my gosort repository, it measures the running times of the various sort functions.
## Important notes
There are likely bad practices in this library, since I'm both getting reacquainted with C/C++, and I've never built a library before.
These may be fixed over time, or maybe not.