-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaxheap.cpp
133 lines (117 loc) · 1.63 KB
/
maxheap.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
#include <iostream>
using namespace std;
class maxheap{
public:
int *arr;
int capacity;
int len;
maxheap(int l);
void insert(int);
int parent(int); //index passed
void heapify(int); //index passed,bottom up heapify
void delmax();
void topdownheapify(int);
void viewheap();
int getmax();
int leftchild(int);
int rightchild(int);
};
maxheap::maxheap(int l)
{
len=0;
capacity=l;
arr=new int[capacity];
}
void maxheap::insert(int element)
{
if(len==capacity)
{ cout<<"no space";
}
else
{
len++;
arr[len-1]=element;
heapify(len-1);
}
}
int maxheap::parent(int l)
{
return (l-1)/2;
}
void maxheap::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 maxheap::getmax()
{
return arr[0];
}
void maxheap::delmax()
{
arr[0]=arr[len-1];
len--;
topdownheapify(0);
}
int maxheap::leftchild(int n)
{
return 2*n+1;
}
int maxheap::rightchild(int n)
{
return 2*n+2;
}
void maxheap::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 maxheap::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};
maxheap h(100);
for(int i=0;i<8;i++)
h.insert(arr[i]);
h.viewheap();
h.delmax();
h.viewheap();
return 0;
}