huffman-algorithm
There are 128 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
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.
amaui-org/amaui-huffman-code
Huffman code
aymyo/huffman-coding-website
An interactive web tool to learn about Huffman Coding, backed with theory to understand its key concepts.
melihkaratekin/Static-and-Dynamic-Huffman-Algorithm-CSharp
File compression program using Static and Dynamic Huffman Algorithms with C# programming language.
tjazerzen/Huffman_encoding_decoding
Huffman encoding and decoding tree in python
AnasATaleeb/HuffmanCodeApplication
Comp336 Project#2
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.
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.
lingbai-kong/huffman
同济大学CS《数据结构课程设计》暑期作业TongJi University CS data structure assignment
SharifAmit/HuffmanCoding
Huffman compression algorithm made with python
AbdallahHemdan/HuffmanCodingAlgorithmAssignment
📁 Implementation of Huffman coding compression algorithm in c++ as an assignment for Multimedia course
edg-l/rustyman
Huffman compression and decompression implemented in rust
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
哈夫曼编解码压缩文件,只需在电脑选择要压缩的文件即可压缩,压缩后重新选择压缩的文件可进行解压。
FARZINzx/HuffmanCoding
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.
geekyharsh05/Huffman-Encoder
The algorithm assigns shorter codes to more frequent characters, optimizing the overall compression.
GuildOfCalamity/Zippy
A home-brew compression engine using Huffman trees.
nazli-d/Huffman-coding-multithread
This project encompasses an effort to optimize the Huffman Coding Algorithm by utilizing multi-threading, resulting in the development of various versions.
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.