Click here to Skip to main content
6,305,776 members and growing! (17,376 online)
Email Password   helpLost your password?
Languages » C# » General     Intermediate

Implementing the Huffman algorithm as a C# library

By JadBenAutho

Flexible HuffmanAlgorithm object, based on streams data forms.
C#, Windows, .NET 1.1VS.NET2003, Dev
Posted:20 Sep 2005
Views:21,200
Bookmarked:13 times
Unedited contribution
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
7 votes for this article.
Popularity: 1.65 Rating: 1.95 out of 5
4 votes, 57.1%
1

2
1 vote, 14.3%
3

4
2 votes, 28.6%
5

Sample Image - Huffman_algorithm.jpg

Introduction

Huffman algorithm is quite simple (In theory at least), the idea is based to the fact that in
most files, some bytes(characters if you will)  probably appears more times them others.

Main steps:

- Scan the data source from the begining till the end, list in a table bytes that appears and
  how many times(that is their value in the table).

-Now we need to build some kind of tree(you'll get it later), take the 2 bytes that appeared
 less times in the data source than others, create a parent node to both of them,
 remove them from the list and add the parent node to the list instead(the parent value will 
 be the sum of times both his childs values). Continue this process until the list is completely
 empty. The last parent you've created is the root node of the tree.

-We will give each byte that was in the file different value, the number of right and   
 left turns when walking from the root of the tree to a leaf is the number of bits that we
 will use as a new value to that leaf(byte) we will say left turn = 0 right turn = 1
 (or vice versa). All we  left to do is to replace raech byte in several bits (left and right 
 urns) in most cases this should cost less space.

-Extracting is easier (Save the original table we made as the start, first of all before 
  archiving).  Read the table, rebuild the tree from the table, read the bits and start taking
  right and left turns down the tree root, when getting to a leaf, read the original byte,
  save it somewhere else and start over from the tree root, reading the next bit...

HuffmanAlgorithm object

-Uses huffman algorithm to extract\archive any types of data stream.
 Archived data contains info about the original data size, version, password and more.

-Each extracting\archiving function has vesion thats pops event handler each time  one 
 percent of the process is over.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

JadBenAutho


Member
Born and raised in Israel, I've caught the programming virus at the age of 15.
Since than I can't stop coding.
Occupation: Software Developer
Company: Rontal Applications
Location: Israel Israel

Other popular C# articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 4 of 4 (Total in Forum: 4) (Refresh)FirstPrevNext
GeneralQuestion PinmemberTrance Junkie5:14 21 Sep '05  
GeneralRe: Question PinmemberJadBenAutho7:02 21 Sep '05  
Generalfiles? PinmemberUnruled Boy4:38 21 Sep '05  
GeneralRe: files? PinmemberJadBenAutho7:05 21 Sep '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 20 Sep 2005
Editor:
Copyright 2005 by JadBenAutho
Everything else Copyright © CodeProject, 1999-2009
Web16 | Advertise on the Code Project