Skip to content

Instantly share code, notes, and snippets.

@dvbit
dvbit / Min_Heap.c
Created June 4, 2020 18:20 — 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
*/