Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 401 Bytes

README.md

File metadata and controls

11 lines (10 loc) · 401 Bytes

Huffman Compression

Made for a Data structures and Algorithms course, the program compresses a given text file using a Huffman Tree

Usage

./huffman.exe (-c | -d) <filenam>
  • -c: compress
  • -d: decompress

Intersting remark

I had to implement my own bit-level IO functinos. They work pretty well.