This project implements a file compression utility using Huffman coding—a lossless data compression technique that assigns variable-length binary codes to bytes based on their frequencies. The utility ...
Place your input file as inp.txt in the project directory. Min-Heap (Priority Queue) for building the Huffman tree. Binary Tree for representing the Huffman tree. Arrays for storing frequencies, codes ...