Update sorting/selection_sort_recursive.c

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
DhruvPasricha 2021-02-27 13:10:20 +05:30 committed by GitHub
parent 013b586021
commit 9a1d26e22a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,7 @@
* @brief [Selection Sort](https://en.wikipedia.org/wiki/Selection_sort)
* implementation using recursion.
*/
#include <assert.h> /// for assert
#include <stdio.h> /// for IO operations
#include <stdlib.h> /// for dynamic memory allocation