Skip to content

Commit

Permalink
HeapSort with BigO(nlogn) timeComplexity
Browse files Browse the repository at this point in the history
  • Loading branch information
Raushan-Kumar007 committed Jul 22, 2022
1 parent 09072fc commit 0a6b465
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions Shorting/HeapSort.java
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);
}
}

0 comments on commit 0a6b465

Please sign in to comment.