An open API service indexing awesome lists of open source software.

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++

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.