Contains various sorting algorithms with a program that can be used to test the sorts.
Adapted from a Computer Systems and C Programming course assignment.
To build this program, run make
.
The Makefile has the following targets:
- all - builds the program (default),
- debug - builds the program with no optimizations and with debug info,
- clean - removes the built program and object files created by the building process,
- format - formats all .c and .h files using a .clang-format file.
To see the program usage text, run ./sorting_comparison
after building it.
None.