-
Notifications
You must be signed in to change notification settings - Fork 7
/
67_Heap_Sort.cpp
40 lines (40 loc) · 900 Bytes
/
67_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
#include<iostream>
using namespace std;
void maxHeapify(int arr[],int n, int i){
int largest = i;
int leftChild = 2*i + 1;
int rightChild = 2*i + 2;
if(leftChild<n && arr[leftChild]>arr[largest]){
largest = leftChild;
}
if(rightChild<n && arr[rightChild]>arr[largest]){
largest = rightChild;
}
if(largest!=i){
int temp = arr[largest];
arr[largest] = arr[i];
arr[i] = temp;
maxHeapify(arr,n,largest);
}
}
void heapSort(int arr[],int n){
for(int i=(n/2)-1;i>=0;i--){
maxHeapify(arr,n,i);
}
for(int i=n-1;i>=0;i--){
int temp = arr[0];
arr[0] = arr[i];
arr[i] = temp;
maxHeapify(arr,i,0);
}
}
int main()
{
int arr[10] = {9,8,7,6,5,4,3,2,1,0};
heapSort(arr,10);
for(int i=0;i<10;i++){
cout<<arr[i]<<" ";
}
cout<<endl;
return 0;
}