Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 397 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 397 Bytes

file-compressor

A text file compressor and decompressor based on Huffman encoding algorithm

How to use?

  • build the executable using g++ main.cpp compressor.cpp decompressor.cpp huffman_utility.cpp -o encoder
  • run the executable uisng ./encoder
  • Follow the prompts for compression or decompression

TO DO

  • Image compressor using huffman algorithm
  • Other compression algorithms