Collaborators:
- @Bleemoose
This project was made in maven and its goal is to use the huffman algorithm to compress/decompress ascii files. The whole project was finished in around 4 months and its final grade was : 9.5
To encode a file run the following:
java -cp .\target\datastructuresassignment-1.0-SNAPSHOT.jar hua.org.datastructuresassignment.Encoder input.txt output.huf
To decode a file run the following:
java -cp .\target\datastructuresassignment-1.0-SNAPSHOT.jar hua.org.datastructuresassignment.Decoder input.huf output.txt