473,699 Members | 2,628 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Huffman encoding in C

1 New Member
Hello everyone, i'm writing a C program that will read a text file and then encode the characters using huffman algorithm. So far i've read the files, built a tree, and now I'm building the strings to be used in encoding, Where i'm having problem is my BuildStrings function, instead of printing the 0s and 1s I appended to the array it outputs a series of 0s and 1s. Below is the BuildStrings function and the main function.

Expand|Select|Wrap|Line Numbers
  1. /*This funtion will build strings to be used in Huffman encoding
  2. It is recursive in nature and will traverse the tree while appending 
  3. 0 to left paths and 1 to right paths. */
  4.  
  5. void BuildStrings(sTreenode *r)
  6. {
  7.     //printf("I depeth is: %i\n",r->weight);    
  8.     if ((r->LChild == NULL) && (r->RChild == NULL))        //found a leaf yet?
  9.     {strcpy(cStrings[(((int) r->data) & 0xff)],cPath);    //if yes, copy the path to the string to the 2D array cStrings
  10.     iDepth--;                                            //go back up a level
  11.     cPath[iDepth] = '\0';
  12.         return;
  13.     }
  14.     else                                                //
  15.     {
  16.         iDepth++;                                        //otherwise go down a level
  17.         cPath[iDepth] = '0';                            //append 0 before taking the left path
  18.         BuildStrings(r->LChild);                        //calls the left child
  19.         cPath[iDepth] = '\0';
  20.  
  21.         iDepth++;                                        //
  22.         cPath[iDepth] = '1';                            //append 1 before taking the right path
  23.         BuildStrings(r->RChild);                        //calls the right child
  24.         cPath[iDepth] = '\0';
  25.     }
  26.     iDepth--;
  27.     return;                                                //return to the main function
  28. }
  29.  
  30.  
  31. /*Main program*/
  32. int main()
  33. {
  34.     iDepth = 0;                                            // tells us what level of the tree we're currently in
  35.     for (int i=0; i<=255; i++)    cPath[i]='\0';            //initializing cPath to nulls
  36.     for (int i=0; i<=255; i++) for(int j=0; j <= 255; j++)    
  37.         cStrings[i][j]='\0';                            //see above
  38.     float percent[255];                                    //array to hold the percentage frequency of each xter
  39.  
  40.     total = CountChars(filename);                        //calls CountChars which counts the number of xters and their weight
  41.  
  42.     printf("\nThe Total is: %d\n", total);                //Prints the total no of characters read
  43.     printf("\n N    Frequency   Percentage\n");
  44.     printf(" ---  ---------   ----------\n");
  45.  
  46.     for(int x= 0; x < 255;x++)                            //loop to print out all the characters
  47.     {
  48.         percent[x] = (iCharCount[x]* 100.0)/total ;        //computes the frequency percentage of each character
  49.         if(iCharCount[x]){                                //if xter is non-zero, print it
  50.         //printf("\n%3d  %8d   %8.3f",x,iCharCount[x],percent[x]);    //prints the frequency of each array index
  51.         }
  52.     }
  53.  
  54.     BuildTree();                                        //calls the funtion to build trees    
  55.     BuildStrings(root);
  56.     //traverse(root);    
  57.     printf("\n\nThe huffman code for the characters is as follows:\n");
  58.  
  59.     for(int f= 0; f <= 255; f++)
  60.     {
  61.         printf("\n%3i    %4i", f, cStrings[(((int) f) & 0xff)]);
  62.     }
  63.     return 0;    
  64. }
  65.  
I'd appreciate your assistance.
Oct 10 '08 #1
0 5384

Sign in to post your reply or Sign up for a free account.

Similar topics

3
5389
by: dot | last post by:
Hi all, I have written a Python huffman Encoding Module, for my own amusement. I thought it might be educational/entertaining for other people, so I've put it on my website and wrote about it a little. http://gumuz.looze.net/wordpress/index.php/archives/2004/11/25/huffman-encoding/ Your comments are highly appreciated! cheers,
8
5645
by: dirgesh | last post by:
I am having a hard time making a Program in C/C++ that uses the Huffman Compression to compress a file. I have a file "Hello World" That i need to compress. can someone please give me an example of how to do it with huffman compression.
8
9629
by: james | last post by:
I have ran into a little snag on an old database application I am converting. Out of 63 tables(all seperate files) , two of them are compressed using Huffman Compression. I have been searching all over the net (don't hit me too hard if you know a place I didn't look) and MSDN and cannot find anything that explains how to use Huffman in VB.NET. I need to extract the data on the fly from the files(tables) using Huffman and then put the data...
15
3686
by: aarklon | last post by:
Hi all, this is the program which I saw in my colleagues book. the program was run on turbo C++ 3.0 compiler /*beginning of header file huff.h*/ #ifndef _HUFF_H_ #define _HUFF_H_
4
5840
by: A_StClaire_ | last post by:
hi all, I'm trying to implement Huffman coding on letters of a string. I've written functions to define the initial leaf nodes (letters and their frequencies) and to sort them. I've also put together the actual tree with its appropriate nodes and child nodes. however I'm having some trouble developing a means of traversing the tree itself to create the binary key table. i.e., how would I know how many levels the tree has? this...
3
3625
by: Udhay | last post by:
Sir, I am udhay. I am a student and i am working on Audio compression for my exam. I want to know how does the compression take place in audio?? Can anyone suggest a link for the novice to go through the HUFFMAN Algorithm..
11
6784
by: KWSW | last post by:
The other thread got too long so decided to start a new one. Got my huffman tree working and am now moving onto encoding and decoding my given text file. My idea now is to print out all the leaf nodes into a string and split them up using tokens to get my ascii value and the huffman code and store into a collection for reference when encoding. Just got some questions on this: 1. Is there anyway to look through the huffman tree for the...
5
8054
by: recordlovelife | last post by:
So i have written a code to encode a string of a select amount of letters into huffman code. #include <iostream> #include <string> using namespace std; string Huffman(char letter); string Huffman_word(string word);
1
2192
by: Esqulax | last post by:
Hiya guys. im after a bit of guidance to be honest My task: Create a program that generates huffman codewords for a 16 symbol alphabet, the input should be the probabilities of each symbol occurring. Im gonna use 6 for ease of programming for now Im unsure where to go... Ive created a basic "take user input - assign to an array" program.(userinput) Heres my thoughts.. copy userinput to huffmanarray using a for loop, and bubble sort it
0
8685
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8613
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9172
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8908
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8880
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
4374
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3054
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2344
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2008
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.