Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 654 Bytes

File metadata and controls

24 lines (14 loc) · 654 Bytes

Sorting Algorithms

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.

How to build

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.

How to run

To see the program usage text, run ./sorting_comparison after building it.

Known issues

None.