-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HeapSort with BigO(nlogn) timeComplexity
- Loading branch information
1 parent
09072fc
commit 0a6b465
Showing
1 changed file
with
63 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,63 @@ | ||
package Shorting; | ||
|
||
public class HeapSort { | ||
// sort array in bigO(nlogN) TIME complexity | ||
public void buildheap(int arr[],int n){ | ||
for (int i = n / 2 - 1; i >= 0; i--) | ||
heapify(arr, n, i); | ||
} | ||
public void sort(int arr[]) | ||
{ | ||
int n = arr.length; | ||
|
||
buildheap(arr,n); | ||
|
||
for (int i=n-1; i>0; i--) | ||
{ | ||
|
||
int temp = arr[0]; | ||
arr[0] = arr[i]; | ||
arr[i] = temp; | ||
|
||
heapify(arr, i, 0); | ||
} | ||
} | ||
void heapify(int arr[], int n, int i) | ||
{ | ||
int largest = i; | ||
int l = 2*i + 1; | ||
int r = 2*i + 2; | ||
|
||
if (l < n && arr[l] > arr[largest]) | ||
largest = l; | ||
|
||
if (r < n && arr[r] > arr[largest]) | ||
largest = r; | ||
|
||
if (largest != i) | ||
{ | ||
int swap = arr[i]; | ||
arr[i] = arr[largest]; | ||
arr[largest] = swap; | ||
|
||
heapify(arr, n, largest); | ||
} | ||
} | ||
static void printArray(int arr[]) | ||
{ | ||
int n = arr.length; | ||
for (int i=0; i<n; ++i) | ||
System.out.print(arr[i]+" "); | ||
System.out.println(); | ||
} | ||
public static void main(String[] args) { | ||
int arr[] = {9 ,1, 4, 5, 2, 0, 6}; | ||
int n = arr.length; | ||
|
||
HeapSort ob = new HeapSort(); | ||
ob.sort(arr); | ||
|
||
System.out.println("Sorted array is"); | ||
printArray(arr); | ||
} | ||
} |