No description
Find a file
2025-09-15 19:34:08 +02:00
.vscode inital cmake project 2025-09-15 19:34:08 +02:00
app inital cmake project 2025-09-15 19:34:08 +02:00
include/modern_c_challenge_1 inital cmake project 2025-09-15 19:34:08 +02:00
src inital cmake project 2025-09-15 19:34:08 +02:00
tests inital cmake project 2025-09-15 19:34:08 +02:00
.gitignore inital cmake project 2025-09-15 19:34:08 +02:00
CMakeLists.txt inital cmake project 2025-09-15 19:34:08 +02:00
README.md inital cmake project 2025-09-15 19:34:08 +02:00

Modern C - Challenge 1: Sequential sorting algorithms

Can you do:

  • A merge sort (with recursion)
  • A quick sort (with recursion)

on arrays with sort keys such as double or strings to your liking?

Nothing is gained if you dont know whether your programs are correct. Therefore, can you provide a simple test routine that checks whether the resulting array really is sorted? This test routine should just scan once through the array and should be much, much faster than your sorting algorithms.