mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-25 06:49:36 +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)
|
* @brief [Selection Sort](https://en.wikipedia.org/wiki/Selection_sort)
|
||||||
* implementation using recursion.
|
* implementation using recursion.
|
||||||
*/
|
*/
|
||||||
#include <assert.h>
|
#include <assert.h> /// for assert
|
||||||
#include <stdbool.h>
|
#include<stdio.h> /// for IO operations
|
||||||
#include <stdio.h>
|
#include <stdlib.h> /// for dynamic memory allocation
|
||||||
#include <stdlib.h>
|
#include <time.h> /// for random numbers generation
|
||||||
#include <time.h>
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Swapped two numbers using pointer
|
* @brief Swapped two numbers using pointer
|
||||||
|
Loading…
Reference in New Issue
Block a user