mirror of https://github.com/TheAlgorithms/C
fix: Added `limits.h` in `data_structures/heap/max_heap.c` (#812)
* fix: added limits.h header * fix: added limits.h header in max_heap.c * update: adding better documentation * update: added documentation for header files * update: changed comment for header files Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
parent
d5e979ae2b
commit
4ac1c65007
|
@ -1,5 +1,6 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <limits.h> /// for INT_MIN
|
||||
#include <stdio.h> /// for IO operations
|
||||
#include <stdlib.h> /// for dynamic memory allocation
|
||||
|
||||
typedef struct max_heap
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue