Skip to content

C++ program to compress any file using the standard Huffman encoding algorithm

Notifications You must be signed in to change notification settings

patricksheehan/Huffman-Compression

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Huffman

Takes input and provides compressed output via the Huffman encoding algorithm.

To build: - Open a terminal - Go to folder with files & makefile - type "make" To run: - In terminal - to compress - type: huffman < notcompressed.txt > compressed.txt - to decompress - type: huffman -d < compressed.txt > decompressed.txt

example:

$ huffman < Huckleberry.txt > Huckleberry_compressed.txt

About

C++ program to compress any file using the standard Huffman encoding algorithm

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published