-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinaryheap.cpp
153 lines (135 loc) · 1.95 KB
/
binaryheap.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#include <iostream>
using namespace std;
class minheap{
public:
int *arr;
int capacity;
int len;
minheap(int l);
void insert(int);
int parent(int); //index passed
void heapify(int); //index passed,bottom up heapify
void delmin();
void changekey(int,int);
void topdownheapify(int);
void viewheap();
int getmin();
void del(int); //deleting arbritrary element,index passed
int leftchild(int);
int rightchild(int);
};
minheap::minheap(int l)
{
len=0;
capacity=l;
arr=new int[capacity];
}
void minheap::insert(int element)
{
if(len==capacity)
{ cout<<"no space";
}
else
{
len++;
arr[len-1]=element;
heapify(len-1);
}
}
int minheap::parent(int l)
{
return (l-1)/2;
}
void minheap::heapify(int l)
{
int p=parent(l);
while(l>=0 && arr[p]>arr[l])
{
int temp=arr[l];
arr[l]=arr[p];
arr[p]=temp;
l=p;
p=(l-1)/2;
}
}
int minheap::getmin()
{
return arr[0];
}
void minheap::del(int i)
{
changekey(i,getmin()-1);
delmin();
}
void minheap::changekey(int index,int value)
{
int p=arr[index];
arr[index]=value;
if(p<value)
topdownheapify(index);
else
heapify(index);
}
void minheap::delmin()
{
arr[0]=arr[len-1];
len--;
topdownheapify(0);
}
int minheap::leftchild(int n)
{
return 2*n+1;
}
int minheap::rightchild(int n)
{
return 2*n+2;
}
void minheap::topdownheapify(int i)
{
int j,l=leftchild(i);
int r=rightchild(i);
while(l<len)
{
if(arr[l]<arr[r])
j=l;
else
j=r;
if(arr[j]<arr[i])
{
int temp=arr[j];
arr[j]=arr[i];
arr[i]=temp;
i=j;
l=leftchild(i);
r=rightchild(i);
}
else
break;
}
if(l==len-1)
if(arr[l]<arr[i])
{
int temp=arr[l];
arr[l]=arr[i];
arr[i]=temp;
}
}
void minheap::viewheap()
{
for(int i=0;i<len;i++)
cout<<arr[i]<<" ";
cout<<"\n";
}
int main()
{
int arr[]={10,98,94,65,35,75,25,55};
minheap h(100);
for(int i=0;i<8;i++)
h.insert(arr[i]);
h.viewheap();
h.delmin();
h.viewheap();
h.del(1);
h.viewheap();
return 0;
}