-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from Stormbreakerr20/Contributing
Created Application Folder #5
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// an array will be given to you which is not a heap | ||
|
||
// heapify function is used to put the given node of bt to its correct position so it follows order of max heap | ||
|
||
// for given array we know leaf node are from n/2+1 to n : hence those nodes are alrady a heap individually so we need to solve for 1 to n/2 | ||
|
||
// if we start indexing from 0 : left =2i+1 right = 2i+2 | ||
|
||
#include<iostream> | ||
using namespace std; | ||
// O(logn) | ||
void heapify(int *arr , int n, int i){ | ||
int leftchild = 2*i; | ||
int rightchild = 2*i +1; | ||
int largest=i; | ||
|
||
if(leftchild<n && arr[leftchild]>arr[largest]){ | ||
largest=leftchild; | ||
} | ||
else if(rightchild<n && arr[rightchild]>arr[largest]){ | ||
largest=rightchild; | ||
} | ||
|
||
if(largest!=i){ | ||
swap(arr[largest],arr[i]); | ||
heapify(arr,n,largest); | ||
} | ||
} | ||
|
||
int main(){ | ||
int arr[6]={-1,54,55,53,52,50}; | ||
int n=5; | ||
// build heap : O(n) | ||
// if arr started directly from 0th index the i =n/2 -1 where n=arr.size() as leaf node found at arr.size()/2 to arr.size()-1 | ||
for(int i=n/2 ; i>0 ;i--){ | ||
heapify(arr,n,i); | ||
} | ||
|
||
for(int i=1 ; i<=n ;i++){ | ||
cout<<arr[i]<<" "; | ||
} | ||
} |