mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-21 21:11:57 +03:00
added a one-line comment to tell what the library/header is for
This commit is contained in:
parent
ad8ab32572
commit
c315db948a
@ -4,11 +4,10 @@
|
||||
* @brief [Selection Sort](https://en.wikipedia.org/wiki/Selection_sort)
|
||||
* implementation using recursion.
|
||||
*/
|
||||
#include <assert.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <time.h>
|
||||
#include <assert.h> /// for assert
|
||||
#include<stdio.h> /// for IO operations
|
||||
#include <stdlib.h> /// for dynamic memory allocation
|
||||
#include <time.h> /// for random numbers generation
|
||||
|
||||
/**
|
||||
* @brief Swapped two numbers using pointer
|
||||
|
Loading…
Reference in New Issue
Block a user