-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheap_sort.cpp
87 lines (75 loc) · 1.66 KB
/
heap_sort.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
#include <iostream>
using namespace std;
int main() {
int size;
cin >> size;
int *input = new int[size];
for (int i = 0; i < size; i++) {
cin >> input[i];
}
heapSort(input, size);
for (int i = 0; i < size; i++) {
cout << input[i] << " ";
}
delete[] input;
}
void heapSort(int arr[], int n) {
if(n==0)
{
return;
}
int i=1;
while(i<n)
{
int child=i;
while(child>0)
{ int parent=(child-1)/2;
if(arr[child]<arr[parent])
{
int temp=arr[parent];
arr[parent]=arr[child];
arr[child]=temp;
}
else
{
break;
}
child=parent;
}
i++;
}
int size=n;
while(size>0)
{
int temp=arr[0];
arr[0]=arr[size-1];
arr[size-1]=temp;
int parent=0;
int leftchild=(2*parent)+1;
int rightchild=(2*parent)+2;
size--;
while(leftchild<size)
{
int minindex=parent;
if(arr[leftchild]<arr[minindex])
{
minindex=leftchild;
}
if(rightchild<size&&arr[rightchild]<arr[minindex])
{
minindex=rightchild;
}
if(minindex==parent)
{
break;
}
temp=arr[minindex];
arr[minindex]=arr[parent];
arr[parent]=temp;
parent=minindex;
leftchild=(2*parent)+1;
rightchild=(2*parent)+2;
}
}
// Write your code
}