huffman-algorithm
There are 131 repositories under huffman-algorithm topic.
e-hengirmen/Huffman-Coding
A C++ compression program based on Huffman's lossless compression algorithm and decoder.
akuafif/hXOR-Packer
A PE (Portable Executable) packer with Huffman Compression and Xor encryption.
TheNilesh/huffman
Using huffman coding to compress-decompress real-world files
kelreel/huffman-javascript
Huffman encode/decode text
Elzawawy/huffman-coding-zipper
A "Huffman Coding" algorithm-based application written in C++ to compress/decompress any type of files.
EncodeDecodeStepByStep/EncodeDecodeStepByStep
Encode Decode Step by Step is an open-source educational application designed to simplify bitwise file encodings. It integrates six encoding algorithms: Delta, Unary, Elias-Gamma, Fibonacci, Golomb, and Huffman - through a user-friendly graphical interface. Ideal for educational use, this tool offers a hands-on approach to teach encoding strategies
PhoenixDD/Huffman-Encode_Decode
A c++ program to compresses and decompresses files using Huffman algorithm.
bharath3794/Algorithms-Illuminated---Part-3
This is the implementation of 3rd Part in 3-Part Series of Algorithms Illuminated Book. All Implementations in this repository are written in both Python and Golang. Single IPython Notebook contains all Algorithms given in this Part 3.
MinhasKamal/FileSqueezer
Simple File Compressor & Extractor (huffman-algorithm-compression-zip)
arnab132/Huffman-Coding-Python
Implementation of Huffman Coding using Python
ElizaLo/Data-Compression-Methods
Hamming, Huffman and etc algorithms
lingbai-kong/huffman
同济大学CS《数据结构课程设计》暑期作业TongJi University CS data structure assignment
SubZer0811/huffman
This repo is an implementation of both constant and variable huffman encoding.
dat911zz/Huffman
Mã hóa Huffman (giải thuật tham lam), sử dụng cây nhị phân để tạo bảng mã Huffman, giải quyết vấn đề nén chuỗi. Chống chỉ định cho người yếu tim, người sợ độ cao :))
Abhikar12/File-Compression
The project is to design compression and decompression programs using Huffman Coding. The idea is to assign variable length codes to input characters based on their frequencies. The more the frequency of the character the shorter the code assigned to it.
onesy-me/huffman-code
Huffman code
tjazerzen/Huffman_encoding_decoding
Huffman encoding and decoding tree in python
aymyo/huffman-coding-website
An interactive web tool to learn about Huffman Coding, backed with theory to understand its key concepts.
HxnDev/Huffman-Data-Encryption
The idea behind Huffman coding is based upon the frequency of a symbol in a sequence. The symbol that is the most frequent in that sequence gets a new code that is very small, the least frequent symbol will get a code that is very long, so that when we’ll translate the input, we want to encode the most frequent symbols will take less space than they used to and the least frequent symbols will take more space.
melihkaratekin/Static-and-Dynamic-Huffman-Algorithm-CSharp
File compression program using Static and Dynamic Huffman Algorithms with C# programming language.
AnasATaleeb/HuffmanCodeApplication
Comp336 Project#2
edg-l/rustyman
Huffman compression and decompression implemented in rust
fgarcia0x0/huffPP
The huffPP (Huffman Coding Plus Plus) is a utility tool written in C++ 20 to compact and unzip files using the huffman coding algorithm.
giftthedeveloper/huffman-compression-tool
A simple Command line tool project that implementes the Huffman algorithm for loselless compression built in TypeScript.
SharifAmit/HuffmanCoding
Huffman compression algorithm made with python
AbdallahHemdan/HuffmanCodingAlgorithmAssignment
📁 Implementation of Huffman coding compression algorithm in c++ as an assignment for Multimedia course
formiat/Huffman_Archiver
Visual Studio 2017 C++ Console Project
jermp/entropy_coding
Some entropy coding algorithms in C++.
mohit01-10/LZW_and_Huffman_Compression_Algorithm
Implemented Huffman and LZW lossless data compression techniques.
nrutkowski1/HuffmanEncoding
Compress and decompress a file using the Huffman encoding technique
zxuu/Haffuman-compressed-files
哈夫曼编解码压缩文件,只需在电脑选择要压缩的文件即可压缩,压缩后重新选择压缩的文件可进行解压。
alefeans/huffman
huffman is a Go implementation of the Huffman Coding lossless data compression algorithm and the solution for the challenge Write Your Own Compression Tool
FARZINzx/Huffman-Coding
This project implements Huffman Encoding and Decoding in Java, complete with a graphical user interface (GUI) to visualize the Huffman Tree, Huffman Codes, character frequencies, encoded text, and decoded text. The application also supports file upload and saving encoded and decoded text.
GuildOfCalamity/Zippy
A home-brew compression engine using Huffman trees.
HUMBLEF0OL/file-squeeze
FileSqueeze is a lightweight command-line tool that compresses and decompresses text-based files (.txt, .json, .docx, .pdf) using the Huffman Coding algorithm. It provides detailed compression metrics, storage savings visualization, and an intuitive CLI for seamless usage. Currently in beta.
rohanmittal1163/Huffman-Compressor-Decompressor
Created by David Huffman a Huffman Coding Algorithm where data is being compressed using the Huffman Coding technique to become smaller without losing any of its information.