Compress any file format faster with Huffman Encoding.
This command-line application is written in C/C++ and requires gcc/g++ compiler.
Makefile is provided. make command can be used. Or manually compiler and run the driver file.
$ make
or
$ g++ encoderRunner.cpp
$ ./a.out
Command line application written in C++ which compresses files despite the format with huffman coding algorithm.
File is read from command line which allow reading binary format of any files. After reading, all the bits are inserted into Binary Heap which provides bit manipulations and applying huffman encodings.