Huffman
README.md

Huffman

An implementation of the Huffman coding algorithm written in Java.

Running the application

Download the source code from the repository and compile all the source code, then execute either huffman.Driver or huffman.HuffmanCoding.

  • Compile: javac -d bin src/huffman/*.java
  • Execute: java -cp bin huffman.HuffmanCoding inputA.txt encodeTest decodeTest.txt

Dependencies