Open In App

C Program to Implement Max Heap

In this article, we will learn the implementation of the max heap in the C programming language.

A heap is a data structure like a tree with some special properties. The basic requirement of the heap is that the value of a node must be greater than equal to (or smaller than equal to) the value of its children and the tree should be a complete binary tree.



What is Max Heap?

The max-heap is the heap where each and every node of a complete binary tree is greater than or equal to its child node. We can see the example of a max-heap in the below image.

Max Heap in C

The above heap can be represented in an array as given below.



arr[] = {17,15,10,6,10,7};

We denote,

Here, i is the index of the current node in the array.

For example, To find a parent of the 4th element of the array given below we use parent(4)=(4-1)/2=1th node or element at the index at 1 in an array. We are going to use these three formulas in the implementation of the min heap.

Basic Operations on Min Heap

Following are the basic operations that are performed on the min heap:

Implementation of the Max Heap in C

To implement the max heap, we will use the structures in C to implement the heap data structure to write the implementation of the max heap to maintain the property of the max heap we have used the bottom-up and top-down approaches both. Let’s understand some important functions of the max heap program.

Declaring the Max Heap Structure

Here we have created a structure named Heap where




// Declare a heap structure
struct Heap {
    int* arr;
    int size;
    int capacity;
};
 
// define the struct Heap name
typedef struct Heap heap;

We have used typedef to skip the writing “struct Heap” repeatedly.

Function to Build Max Heap

The createHeap() function is used to create the max heap. Inside this function, we have allocated the memory to the pointer of the heap type using the malloc() function.

Parameters of createHeap()

Return Value of createHeap()




// Define a createHeap function
heap* createHeap(int capacity, int* nums)
{
    // Allocating memory to heap h
    heap* h = (heap*)malloc(sizeof(heap));
 
    // Checking if memory is allocated to h or not
    if (h == NULL) {
        printf("Memory error");
        return NULL;
    }
    // set the values to size and capacity
    h->size = 0;
    h->capacity = capacity;
 
    // Allocating memory to array
    h->arr = (int*)malloc(capacity * sizeof(int));
 
    // Checking if memory is allocated to h or not
    if (h->arr == NULL) {
        printf("Memory error");
        return NULL;
    }
    int i;
    for (i = 0; i < capacity; i++) {
        h->arr[i] = nums[i];
    }
 
    h->size = i;
    i = (h->size - 2) / 2;
    while (i >= 0) {
        maxHeapify(h, i);
        i--;
    }
    return h;
}

Function to Insert Elements into Max Heap

The insert() function is used for the purpose of inserting the elements in the heap. In this function,

  1. We first check whether the heap is full or not to avoid an overflow of data.
  2. If the heap has space, we insert the element into an array and increment the size.
  3. After inserting the node in a heap we call the insertHelper() function to maintain the min heap as we insert data after the last child node.

Parameters of insert()

Return Value of insert()




// Define a insert function
void insert(heap* h, int data)
{
 
    // Checking if heap is full or not
    if (h->size < h->capacity) {
        // Inserting data into an array
        h->arr[h->size] = data;
        // Calling maxHeapify_bottom_up function
        insertHelper(h, h->size);
        // Incrementing size of array
        h->size++;
    }
}

Function to Extract the Max Node

This function deletes the root node of the max heap i.e. the maximum value node in the heap.

Parameters of extractMin()

Return Value of extractMin()




void deleteNode(heap* h)
{
    int deleteItem;
 
    // Checking if the heap is empty or not
    if (h->size == 0) {
        printf("\nHeap id empty.");
        return;
    }
 
    // Store the node in deleteItem that
    // is to be deleted.
    deleteItem = h->arr[0];
 
    // Replace the deleted node with the last node
    h->arr[0] = h->arr[h->size - 1];
    // Decrement the size of heap
    h->size--;
 
    // Call maxheapify_top_down for 0th index
    // to maintain the heap property
    maxheapify(h, 0);
}

Function to Reorganize Heap after Insertion

The insertHelper() is the helper function that is used to reorganize the heap after insertion. This function is called after every insertion of an element in a heap to maintain the property of the max heap. In this function,

Parameters

Return Value




// Defining maxHeapify_bottom_up function
void insertHelper(heap* h, int index)
{
 
    // Store parent of element at index
    // in parent variable
    int parent = (index - 1) / 2;
 
    if (h->arr[parent] < h->arr[index]) {
        // Swapping when child is smaller
        // than parent element
        int temp = h->arr[parent];
        h->arr[parent] = h->arr[index];
        h->arr[index] = temp;
 
        // Recursively calling maxHeapify_bottom_up
        insertHelper(h, parent);
    }
}

Heapify Function

The maxHeapify() function is the main function in building a heap. In this function,

Parameters

Return Value




//
void maxHeapify(heap* h, int index)
{
    int left = index * 2 + 1;
    int right = index * 2 + 2;
    int max = index;
 
    // Checking whether our left or child element
    // is at right index of not to avoid index error
    if (left >= h->size || left < 0)
        left = -1;
    if (right >= h->size || right < 0)
        right = -1;
 
    // store left or right element in max if
    // any of these is smaller that its parent
    if (left != -1 && h->arr[left] > h->arr[max])
        max = left;
    if (right != -1 && h->arr[right] > h->arr[max])
        max = right;
 
    // Swapping the nodes
    if (max != index) {
        int temp = h->arr[max];
        h->arr[max] = h->arr[index];
        h->arr[index] = temp;
 
        // recursively calling for their child elements
        // to maintain max heap
        maxHeapify(h, max);
    }
}

Complete Program of the Max Heap in C

This is the complete code to implement max heap, we have added the main() function and a printHeap() function to print the elements of the heap.




#include <malloc.h>
#include <stdio.h>
 
// Declare a heap structure
struct Heap {
    int* arr;
    int size;
    int capacity;
};
 
// define the struct Heap name
typedef struct Heap heap;
 
// forward declarations
heap* createHeap(int capacity, int* nums);
void insertHelper(heap* h, int index);
void maxHeapify(heap* h, int index);
int extractMax(heap* h);
void insert(heap* h, int data);
 
// Define a createHeap function
heap* createHeap(int capacity, int* nums)
{
    // Allocating memory to heap h
    heap* h = (heap*)malloc(sizeof(heap));
 
    // Checking if memory is allocated to h or not
    if (h == NULL) {
        printf("Memory error");
        return NULL;
    }
    // set the values to size and capacity
    h->size = 0;
    h->capacity = capacity;
 
    // Allocating memory to array
    h->arr = (int*)malloc(capacity * sizeof(int));
 
    // Checking if memory is allocated to h or not
    if (h->arr == NULL) {
        printf("Memory error");
        return NULL;
    }
    int i;
    for (i = 0; i < capacity; i++) {
        h->arr[i] = nums[i];
    }
 
    h->size = i;
    i = (h->size - 2) / 2;
    while (i >= 0) {
        maxHeapify(h, i);
        i--;
    }
    return h;
}
 
// Defining maxHeapify_bottom_up function
void insertHelper(heap* h, int index)
{
 
    // Store parent of element at index
    // in parent variable
    int parent = (index - 1) / 2;
 
    if (h->arr[parent] < h->arr[index]) {
        // Swapping when child is smaller
        // than parent element
        int temp = h->arr[parent];
        h->arr[parent] = h->arr[index];
        h->arr[index] = temp;
 
        // Recursively calling maxHeapify_bottom_up
        insertHelper(h, parent);
    }
}
 
void maxHeapify(heap* h, int index)
{
    int left = index * 2 + 1;
    int right = index * 2 + 2;
    int max = index;
 
    // Checking whether our left or child element
    // is at right index of not to avoid index error
    if (left >= h->size || left < 0)
        left = -1;
    if (right >= h->size || right < 0)
        right = -1;
 
    // store left or right element in max if
    // any of these is smaller that its parent
    if (left != -1 && h->arr[left] > h->arr[max])
        max = left;
    if (right != -1 && h->arr[right] > h->arr[max])
        max = right;
 
    // Swapping the nodes
    if (max != index) {
        int temp = h->arr[max];
        h->arr[max] = h->arr[index];
        h->arr[index] = temp;
 
        // recursively calling for their child elements
        // to maintain max heap
        maxHeapify(h, max);
    }
}
 
int extractMax(heap* h)
{
    int deleteItem;
 
    // Checking if the heap is empty or not
    if (h->size == 0) {
        printf("\nHeap id empty.");
        return -999;
    }
 
    // Store the node in deleteItem that
    // is to be deleted.
    deleteItem = h->arr[0];
 
    // Replace the deleted node with the last node
    h->arr[0] = h->arr[h->size - 1];
    // Decrement the size of heap
    h->size--;
 
    // Call maxheapify_top_down for 0th index
    // to maintain the heap property
    maxHeapify(h, 0);
    return deleteItem;
}
 
// Define a insert function
void insert(heap* h, int data)
{
 
    // Checking if heap is full or not
    if (h->size < h->capacity) {
        // Inserting data into an array
        h->arr[h->size] = data;
        // Calling maxHeapify_bottom_up function
        insertHelper(h, h->size);
        // Incrementing size of array
        h->size++;
    }
}
 
void printHeap(heap* h)
{
 
    for (int i = 0; i < h->size; i++) {
        printf("%d ", h->arr[i]);
    }
    printf("\n");
}
 
void main()
{
    int arr[9] = {1,2,3,4,5,6,7,8,9};
    heap* hp = createHeap(9, arr);
 
    printHeap(hp);
    extractMax(hp);
    printHeap(hp);
}

Output
9 8 7 6 5 4 3 2 1 
8 6 7 2 5 4 3 1 

In the first line of output, we can see elements that are inserted in the heap, and in the second line heap is printed again after deleting one element from the heap.

 


Article Tags :