Click here to Skip to main content
15,893,668 members
Articles / Programming Languages / C++
Article

Huffman Coding Class

Rate me:
Please Sign up or sign in to vote.
4.17/5 (24 votes)
6 Jun 2004CPOL2 min read 218.9K   10.4K   54   27
A file compressor class based on the Huffman Tree

Image 1

Contents

Introduction

This version of file encoder and decoder program is based on the Huffman coding method. It explicitly demonstrates the details of the files during the encoding and decoding. The algorithm is encapsulated in a class En_Decode by the standard C++ language. Here is a demonstration project for the class.

Using the code

This class is implemented by standard C++, so it is very easy to use.

  1. Create an MFC application program as usual.
  2. Add the source file En_Decode.cpp and En_Decode.h to the project.
  3. Add the header file to your project by:
    //
    //    #include "En_Decode.h"
    //

    Define your own coder object, such as:

    //
    //    En_Decode Coder;
    //
  4. Use the member function of the class to set the source file name and destination encoded file name, then call Encode() to encode the source file.
    //
    //    Coder.SetInputFileName("C:/test.txt", "txt");
    //    Coder.SetOutputFileName("C:/encoded");
    //    Coder.Encode();
    //

In the same way, we can decode the encoded files to exactly the source file.

Class Members

Construction

En_DecodeConstructs a En_Decode object.

File Name Functions

SetInputFileNameSet the input file name.
SetOutputFileNameSet the output file name.
GetExtNameGet the ext name of the encoded file when decoding.

Paraneter Functions

GetMinFreqGet the minimum frequency of the symbols in the source file.
GetMaxFreqGet the maximum frequency of the symbols in the source file.
GetFreq(idx)Get the frequency value of a symbol in the source file.
GetActiveSymbolsGet the number of active symbols in the source file.
GetActualDataLengthGet the bytes number of the encoded file not including head.
GetUncodedFileLengthGet the length of the source file.
GetEncodedFileCodeLengthGet the average code length of the encoded file.
GetSourceFileEntropyGet the entropy of the source file.

Thanks to...

Derek Lakin for his help with CTabCtrlSSL in the demo project.

Contacting the Authors

This is the first time I share my code here. It is done in a hurry, so exception handling is ignored. Any one who is interested in it can enhance it freely, and please let me know about any improvement, thanks!

I am a junior student in Huangzhong University of Science and Technology, China. I am interested in C++ and MFC, and any coding project. I am glad to share my codes here with any one, though it is not that good.

Please contact me via email (zxt0123@163.com).

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
China China
I am a junior student in Huangzhong University of Science and Technology, China. I am interested in C++ and MFC, and any coding project.
I am glad to share my codes here with any one, though it is not that good. Please contact me via email (zxt0123@163.com).

Comments and Discussions

 
GeneralRe: Picky!!! Pin
TimWallace3-Jun-04 15:23
TimWallace3-Jun-04 15:23 
GeneralRe: Picky!!! Pin
handychang3-Jun-04 15:42
handychang3-Jun-04 15:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.