Skip to content

Instantly share code, notes, and snippets.

@sudhanshuptl
sudhanshuptl / Min_Heap.c
Created May 30, 2018 16:47
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
*/