This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Array representation according to Wikipedia article but starts from 0 index. | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| struct heap { | |
| int size; | |
| int count; | |
| int *heaparr; | |
| }; |
NewerOlder