mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-04-26 15:29:40 +00:00
[PR #651] [CLOSED] Huffman Coding #1117
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/TheAlgorithms/C/pull/651
Author: @Krishnapal4050
Created: 10/7/2020
Status: ❌ Closed
Base:
master← Head:master📝 Commits (1)
bc98a62Huffman Coding📊 Changes
1 file changed (+300 additions, -0 deletions)
View changed files
➕
greedy_approach/huffman.c(+300 -0)📄 Description
Huffman coding is a lossless data compression algorithm. In this algorithm, a variable-length code is assigned to input different characters. The code length is related to how frequently characters are used. Most frequent characters have the smallest codes and longer codes for least frequent characters.
Description of Change
References
Checklist
Notes:
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.