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:
Mainak Debnath 2021-03-16 23:37:52 +05:30 committed by GitHub
parent d5e979ae2b
commit 4ac1c65007
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
#include <stdio.h> #include <limits.h> /// for INT_MIN
#include <stdlib.h> #include <stdio.h> /// for IO operations
#include <stdlib.h> /// for dynamic memory allocation
typedef struct max_heap typedef struct max_heap
{ {