I've implemented file compression using huffman's algorithm, but the problem I have is that to enable decompression of the compressed file, the coding tree used, or the codes itself should be written to the file too. The question is: how do i do that? What is the best way to write the coding tree at the beggining of the compressed file?
|
|
|||||||||
|
|
|
Most implementations are using canonical huffman encoding. You have only to store the symbol lengths in a compact way. Hier an implementation: shcodec. Another way is using a semi-static huffman encoding (periodic rescale), then you have not to store any tree. |
|||
|
|
|
|
Since every node in a huffman tree is either a branch with two children, or a leaf, you can use a single bit to represent each node unambiguously. For a leaf, follow immediately with the 8 bits for that node. e.g. for this tree:
You could store 001[B]01[C]1[D]1[A] (Turns out this is exactly what happens in the huffman.c example posted earlier, but not how it was described above). |
||
|
|
|
|
Assuming you compress on 8-bit symbols (i.e. bytes) and the algorithm is non-adaptive, the simplest way would be to store not the tree but the distribution of the values. For example by storing how often you found byte 0, how often byte 1, ..., how often byte 255. Then when reading back the file you can re-assemble the tree. This is the simplest solution, but requires the most storage space (e.g. to cover large files, you would need 4 bytes per value, i.e. 1kb).
P.S.: And as Henk said, using seek() allows you to keep space at the beginning of the file to store the values in later. |
|||
|
|
|
The most naive solution would be to parse the compression tree in pre-order and write the 256 values in the header of your file. |
||
|
|
|
|
There's a pretty standard implementation of Huffman Coding in the Basic Compression Library (BCL), including a recursive function that writes the tree out to a file. Look at huffman.C. It just writes out the leaves in order so the decoder can reconstruct the same tree. BCL is also nice because there are some other pretty straightforward compression algorithm pieces in there, too. It's quite handy if you need to roll your own algorithm. |
||
|
|
|
|
Instead of writing the code tree to the file, write how often each character was found, so the decompression program can generate the same tree. |
||
|
|
