Skip to content

Instantly share code, notes, and snippets.

@kautukraj
kautukraj / Min_Heap.c
Last active February 16, 2020 04:41 — forked from sudhanshuptl/Min_Heap.c
Min Heap array implementation in c
/* Sudhanshu Patel sudhanshuptl13@gmail.com */
/*
Min Heap implementation in c
*/
#include<stdio.h>
#include<stdlib.h>
/*
Array Implementation of MinHeap data Structure
*/