-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheapify.cpp
More file actions
54 lines (45 loc) · 958 Bytes
/
Copy pathheapify.cpp
File metadata and controls
54 lines (45 loc) · 958 Bytes
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
#include <iostream>
using namespace std;
void heapify(int *arr, int n, int i)
{
int left = 2 * i + 1;
int right = 2 * i + 2;
int largest = i;
if (left < n && arr[left] > arr[largest])
largest = left;
if (right < n && arr[right] > arr[largest])
largest = right;
if (largest != i)
{
swap(arr[i], arr[largest]);
heapify(arr, n, largest);
}
}
void build_heap(int arr[], int n)
{
for (int i = n / 2 - 1; i >= 0; i--)
{
heapify(arr, n, i);
}
}
void heap_sort(int arr[], int n)
{
while (n > 0)
{
n--; // decrement size
swap(arr[0], arr[n]); // swap first with last
heapify(arr, n, 0);
}
}
int main()
{
int arr[] = {12, 15, 13, 11, 14};
int n = sizeof(arr) / sizeof(arr[0]);
build_heap(arr, n);
heap_sort(arr, n);
for (int i = 0; i < n; i++)
{
cout << arr[i] << " ";
}
return 0;
}