Skip to content

New Feature-feat: added [heapSort] algorithm #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 92 additions & 0 deletions algorithms/sorting/heapSort.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
/**
* Heap Sort
*
* Geeks For Geeks
* https://www.geeksforgeeks.org/heap-sort/
*/

/**
* Heap Sort:
* Heap sort is a comparison-based sorting technique based on Binary Heap data structure.
* It is similar to selection sort where we first find the minimum element and place the minimum element at the beginning.
* We repeat the same process for the remaining elements.
* The process of reshaping a binary tree into a Heap data structure is known as ‘heapify’.
*/

/**
* Algorithm:
* To sort an array of size n in ascending order:
* Step 1: Build a max heap from the input data.
* Step 2: At this point, the largest item is stored at the root of the heap.
* Replace it with the last item of the heap followed by reducing the size of heap by 1.
* Finally, heapify the root of the tree.
* Step 3: Repeat step 2 while the size of the heap is greater than 1.
*/

function sort( arr) {
var n = arr.length;

// Build heap (rearrange array)
for (var i = Math.floor(n / 2) - 1; i >= 0; i--)
heapify(arr, n, i);

// One by one extract an element from heap
for (var i = n - 1; i > 0; i--) {
// Move current root to end
var temp = arr[0];
arr[0] = arr[i];
arr[i] = temp;

// call max heapify on the reduced heap
heapify(arr, i, 0);
}
}

// To heapify a subtree rooted with node i which is
// an index in arr[]. n is size of heap
function heapify(arr, n, i) {
var largest = i; // Initialize largest as root
var l = 2 * i + 1; // left = 2*i + 1
var r = 2 * i + 2; // right = 2*i + 2

// If left child is larger than root
if (l < n && arr[l] > arr[largest])
largest = l;

// If right child is larger than largest so far
if (r < n && arr[r] > arr[largest])
largest = r;

// If largest is not root
if (largest != i) {
var swap = arr[i];
arr[i] = arr[largest];
arr[largest] = swap;

// Recursively heapify the affected sub-tree
heapify(arr, n, largest);
}
}

/* A utility function to print array of size n */
function printArray(arr) {
var n = arr.length;
for (var i = 0; i < n; ++i)
document.write(arr[i] + " ");

}

// test

var arr = [ 5, 12, 11, 13, 4, 6, 7 ];
var n = arr.length;

sort(arr);

document.write( "Sorted array is <br>");
printArray(arr, n);