Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time

Huffman Coding

The Huffman coding algorithm will be used for lossless compression in this project. For more information a reference to wikipedia is given here. The project will consist of three parts:

  1. Creating a class to handle text parsing and character frequency analysis given a file. The output will be a file with the frequencies
  2. Creating the huffman tree given the frequency file.
  3. Compressing a file using the huffman tree