Package Compressor.Lossless

Class Diagram Summary
Lossless 
 

Class Summary
HuffmanThis method uses a small number of bits to represent the most used
characters and a large number of bits to represent the less used characters.
Lossless_Compressor 
LZWThis method builds a dictionary of sentences (one or more characters)
for encoding the input data.
LZW_Compressor 
Run_LengthThis method replaces sequences of the same characters with the character
and the number of ocurrences of it.