In this article, we will learn the implementation of Huffman Coding in C.
Huffman Coding is a lossless data compression algorithm. It assigns variable-length codes to input characters, with shorter codes assigned to more frequent characters. This algorithm makes sure that the most common characters are represented by shorter bit strings, reducing the overall size of the encoded data.
How does Huffman Coding work in C?
Huffman Coding builds a binary tree, called the Huffman Tree, from the input characters. The algorithm processes the input characters to construct this tree, where each leaf node represents a character and the path from the root to the leaf node determines the code for that character.
Steps to Build Huffman Tree in C
- Take an array of unique characters along with their frequency of occurrences as input.
- Create a leaf node for each unique character and build a min heap of all leaf nodes. The frequency field is used to compare nodes in the min heap.
- Extract two nodes with the minimum frequency from the min heap.
- Create a new internal node with a frequency equal to the sum of the two nodes' frequencies. Make the first extracted node its left child and the other extracted node its right child. Add this node to the min heap.
- Repeat steps 2 and 3 until the heap contains only one node, which becomes the root node of the Huffman Tree.
Algorithm to Implement Huffman Coding in C Language
- Calculate the frequency of each character in the input data.
- Initialize a priority queue to store nodes of the Huffman Tree based on their frequencies.
- Construct the Huffman Tree by repeatedly combining the two nodes with the lowest frequencies into a new node until only one node remains.
- Traverse the Huffman Tree to generate the Huffman codes for each character. Assign '0' and '1' based on left and right traversal in the tree.
- Encode the input data using the generated Huffman codes to produce the compressed output.
- Decode the encoded data back to the original input using the Huffman Tree.
C Program to Implement Huffman Coding
The following program demonstrates how to implement Huffman coding in C.
C
// C program for Huffman Coding
#include <stdio.h>
#include <stdlib.h>
// This constant can be avoided by explicitly
// calculating height of Huffman Tree
#define MAX_TREE_HT 100
// A Huffman tree node
struct MinHeapNode {
// One of the input characters
char data;
// Frequency of the character
unsigned freq;
// Left and right child of this node
struct MinHeapNode *left, *right;
};
// A Min Heap: Collection of
// min-heap (or Huffman tree) nodes
struct MinHeap {
// Current size of min heap
unsigned size;
// capacity of min heap
unsigned capacity;
// Array of minheap node pointers
struct MinHeapNode** array;
};
// A utility function allocate a new
// min heap node with given character
// and frequency of the character
struct MinHeapNode* newNode(char data, unsigned freq)
{
struct MinHeapNode* temp = (struct MinHeapNode*)malloc(
sizeof(struct MinHeapNode));
temp->left = temp->right = NULL;
temp->data = data;
temp->freq = freq;
return temp;
}
// A utility function to create
// a min heap of given capacity
struct MinHeap* createMinHeap(unsigned capacity)
{
struct MinHeap* minHeap
= (struct MinHeap*)malloc(sizeof(struct MinHeap));
// current size is 0
minHeap->size = 0;
minHeap->capacity = capacity;
minHeap->array = (struct MinHeapNode**)malloc(
minHeap->capacity * sizeof(struct MinHeapNode*));
return minHeap;
}
// A utility function to
// swap two min heap nodes
void swapMinHeapNode(struct MinHeapNode** a,
struct MinHeapNode** b)
{
struct MinHeapNode* t = *a;
*a = *b;
*b = t;
}
// The standard minHeapify function.
void minHeapify(struct MinHeap* minHeap, int idx)
{
int smallest = idx;
int left = 2 * idx + 1;
int right = 2 * idx + 2;
if (left < minHeap->size
&& minHeap->array[left]->freq
< minHeap->array[smallest]->freq)
smallest = left;
if (right < minHeap->size
&& minHeap->array[right]->freq
< minHeap->array[smallest]->freq)
smallest = right;
if (smallest != idx) {
swapMinHeapNode(&minHeap->array[smallest],
&minHeap->array[idx]);
minHeapify(minHeap, smallest);
}
}
// A utility function to check
// if size of heap is 1 or not
int isSizeOne(struct MinHeap* minHeap)
{
return (minHeap->size == 1);
}
// A standard function to extract
// minimum value node from heap
struct MinHeapNode* extractMin(struct MinHeap* minHeap)
{
struct MinHeapNode* temp = minHeap->array[0];
minHeap->array[0] = minHeap->array[minHeap->size - 1];
--minHeap->size;
minHeapify(minHeap, 0);
return temp;
}
// A utility function to insert
// a new node to Min Heap
void insertMinHeap(struct MinHeap* minHeap,
struct MinHeapNode* minHeapNode)
{
++minHeap->size;
int i = minHeap->size - 1;
while (i
&& minHeapNode->freq
< minHeap->array[(i - 1) / 2]->freq) {
minHeap->array[i] = minHeap->array[(i - 1) / 2];
i = (i - 1) / 2;
}
minHeap->array[i] = minHeapNode;
}
// A standard function to build min heap
void buildMinHeap(struct MinHeap* minHeap)
{
int n = minHeap->size - 1;
int i;
for (i = (n - 1) / 2; i >= 0; --i)
minHeapify(minHeap, i);
}
// A utility function to print an array of size n
void printArr(int arr[], int n)
{
int i;
for (i = 0; i < n; ++i)
printf("%d", arr[i]);
printf("\n");
}
// Utility function to check if this node is leaf
int isLeaf(struct MinHeapNode* root)
{
return !(root->left) && !(root->right);
}
// Creates a min heap of capacity
// equal to size and inserts all character of
// data[] in min heap. Initially size of
// min heap is equal to capacity
struct MinHeap* createAndBuildMinHeap(char data[],
int freq[], int size)
{
struct MinHeap* minHeap = createMinHeap(size);
for (int i = 0; i < size; ++i)
minHeap->array[i] = newNode(data[i], freq[i]);
minHeap->size = size;
buildMinHeap(minHeap);
return minHeap;
}
// The main function that builds Huffman tree
struct MinHeapNode* buildHuffmanTree(char data[],
int freq[], int size)
{
struct MinHeapNode *left, *right, *top;
// Step 1: Create a min heap of capacity
// equal to size. Initially, there are
// modes equal to size.
struct MinHeap* minHeap
= createAndBuildMinHeap(data, freq, size);
// Iterate while size of heap doesn't become 1
while (!isSizeOne(minHeap)) {
// Step 2: Extract the two minimum
// freq items from min heap
left = extractMin(minHeap);
right = extractMin(minHeap);
// Step 3: Create a new internal
// node with frequency equal to the
// sum of the two nodes frequencies.
// Make the two extracted node as
// left and right children of this new node.
// Add this node to the min heap
// '$' is a special value for internal nodes, not
// used
top = newNode('$', left->freq + right->freq);
top->left = left;
top->right = right;
insertMinHeap(minHeap, top);
}
// Step 4: The remaining node is the
// root node and the tree is complete.
return extractMin(minHeap);
}
// Prints huffman codes from the root of Huffman Tree.
// It uses arr[] to store codes
void printCodes(struct MinHeapNode* root, int arr[],
int top)
{
// Assign 0 to left edge and recur
if (root->left) {
arr[top] = 0;
printCodes(root->left, arr, top + 1);
}
// Assign 1 to right edge and recur
if (root->right) {
arr[top] = 1;
printCodes(root->right, arr, top + 1);
}
// If this is a leaf node, then
// it contains one of the input
// characters, print the character
// and its code from arr[]
if (isLeaf(root)) {
printf("%c: ", root->data);
printArr(arr, top);
}
}
// The main function that builds a
// Huffman Tree and print codes by traversing
// the built Huffman Tree
void HuffmanCodes(char data[], int freq[], int size)
{
// Construct Huffman Tree
struct MinHeapNode* root
= buildHuffmanTree(data, freq, size);
// Print Huffman codes using
// the Huffman tree built above
int arr[MAX_TREE_HT], top = 0;
printCodes(root, arr, top);
}
// Driver code
int main()
{
char arr[] = { 'a', 'b', 'c', 'd', 'e', 'f' };
int freq[] = { 5, 9, 12, 13, 16, 45 };
int size = sizeof(arr) / sizeof(arr[0]);
HuffmanCodes(arr, freq, size);
return 0;
}
Outputf: 0
c: 100
d: 101
a: 1100
b: 1101
e: 111
Time complexity: O(nlogn) where n is the number of unique characters. If there are n nodes, extractMin() is called 2*(n – 1) times. extractMin() takes O(logn) time as it calls minHeapify(). So, the overall complexity is O(nlogn). If the input array is sorted, there exists a linear time algorithm.
Auxiliary Space: O(N)
Working Example of Huffman Coding in C
Consider the string "geeksforgeeks".
1. Count Frequencies:
g: 2, e: 4, k: 2, s: 2, f: 1, o: 1, r: 1
2. Build a Priority Queue:
Initial nodes: [(1, f), (1, o), (1, r), (2, g), (2, k), (2, s), (4, e)]
3. Build the Huffman Tree:
Combine f and o: (2, fo)
(2)
/ \
f(1) o(1)
Combine r and (fo): (3, rfo)
(3)
/ \
r(1) fo(2)
Combine g and k: (4, gk)
(4)
/ \
g(2) k(2)
Combine s and (gk): (6, sgk)
(6)
/ \
s(2) gk(4)
Combine e and (sgk): (10, esgk)
(10)
/ \
e(4) sgk(6)
Combine (rfo) and (esgk): (13, rfoesgk)
(13)
/ \
rfo(3) esgk(10)
Final Huffman Tree:
(13)
/ \
rfo(3) esgk(10)
/ \ / \
r(1) fo(2) e(4) sgk(6)
/ \ / \
f(1) o(1) s(2) gk(4)
/ \
g(2) k(2)
4. Character Codes:
g: 01
e: 10
k: 110
s: 00
f: 11110
o: 11111
r: 1110
5. Encode Data:
"geeksforgeeks" -> 0100010011000100010011000100010011
6. Decode Data:
"0100010011000100010011000100010011" -> "geeksforgeeks"
Applications of Huffman Coding
- Used in formats like ZIP, GZIP for reducing the size of files such as text, images, and videos.
- Efficiently transmits data over networks by reducing the amount of data to be sent.
- Commonly used in formats like JPEG, MP3, and MPEG for compression.
Similar Reads
Huffman Coding in C++
In this article, we will learn the implementation of Huffman Coding in C++. What is Huffman Coding?Huffman Coding is a popular algorithm used for lossless data compression. It assigns variable-length codes to input characters, with shorter codes assigned to more frequent characters. This technique e
7 min read
Huffman Coding Java
The Huffman coding is a popular algorithm used for lossless data compression. It works by assigning the variable-length codes to the input characters with the shorter codes assigned to the more frequent characters. This results in the prefix-free code meaning no code is a prefix of any other code. T
5 min read
Huffman Coding in Python
Huffman Coding is one of the most popular lossless data compression techniques. This article aims at diving deep into the Huffman Coding and its implementation in Python. What is Huffman Coding?Huffman Coding is an approach used in lossless data compression with the primary objective of delivering r
3 min read
Image Compression using Huffman Coding
Huffman coding is one of the basic compression methods, that have proven useful in image and video compression standards. When applying Huffman encoding technique on an Image, the source symbols can be either pixel intensities of the Image, or the output of an intensity mapping function. Prerequisit
15+ min read
Char Comparison in C
Char is a keyword used for representing characters in C. Character size in C is 1 byte. There are two methods to compare characters in C and these are: Using ASCII valuesUsing strcmp( ) .1. Using ASCII values to compare characters The first method is pretty simple, we all know that each character ca
3 min read
snprintf() in C
In C, snprintf() function is a standard library function that is used to print the specified string till a specified length in the specified format. It is defined in the <stdio.h> header file. In this article, we will learn about snprintf() function in C and how to use it in our program. Synta
3 min read
User-Defined Function in C
A user-defined function is a type of function in C language that is defined by the user himself to perform some specific task. It provides code reusability and modularity to our program. User-defined functions are different from built-in functions as their working is specified by the user and no hea
6 min read
Edit Distance in C++
The Edit Distance problem is a common dynamic programming problem in which we need to transform one string into another with the minimum number of operations. In this article, we will learn how to solve this problem in C++ for two given strings, str1 and str2, and find the minimum number of edits re
9 min read
%d in C
The format specifiers in C are used in formatted strings to represent the type of data to be printed. Different data types have different format specifiers. %d is one such format specifier used for the int data type. In this article, we will discuss the %d format specifier in the C programming langu
3 min read
printf in C
In C language, printf() function is used to print formatted output to the standard output stdout (which is generally the console screen). The printf function is the most used output function in C and it allows formatting the output in many ways. Example: [GFGTABS] C #include <stdio.h> int main
6 min read