Fib Bonacci
Fib Bonacci
h>
#include<stdlib.h>
#include<limits.h>
#include<math.h>
Fheap *createHeap() {
Fheap *heap = (Fheap *)malloc(sizeof(Fheap));
heap->min = NULL;
heap->n = 0;
return heap;
}
int main() {
Fheap *heap = createHeap();
insert(heap, 75);
insert(heap, 3);
insert(heap, 17);
insert(heap, 24);
printf("Minimum key: %d\n", findmin(heap));
return 0;
}