Skip to content

Instantly share code, notes, and snippets.

View hassaanhameed786's full-sized avatar
🏠
Working from home

frozenheart3k hassaanhameed786

🏠
Working from home
View GitHub Profile
@hassaanhameed786
hassaanhameed786 / MinumumHeap.cpp
Last active April 19, 2019 14:02
MinumumHeap
#include<iostream>
using namespace std;
void Min_heap(int *array,int i, int n)
{
int j,temp;
temp =array[i];
j=2*i;
while(j<=n)
{