霍夫曼编码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了霍夫曼编码相关的知识,希望对你有一定的参考价值。

整个系统由建立哈夫曼树、编码和译码三个子系统组成。
建立哈夫曼树具体功能包括:
1. 字符信息统计:读取系统中的源文件Source.txt中,统计出现的字符及其频率。
2. 建立哈夫曼树:根据统计结果建立相关哈夫曼树。
3. 哈夫曼码:利用得到的哈夫曼树,将各字符对应的编码保存在文件HTree.txt中。
编码具体功能包括:
利用已建好的哈夫曼树(如不在内存,则从文件HTree.txt中读入),对文件SendFile.txt中的正文进行编码,然后将结果存入文件CodeFile.txt中。
译码具体功能包括:
利用已建好的哈夫曼树将文件CodeFile.txt中的代码进行译码,结果存入文件ReceiveFile.txt中。
完成后有重赏!!

参考技术A 什么语言?

霍夫曼编码(急求啊!!)

霍夫曼编码现有一个由5个不同符号组成的30个符号的字符串:BABACACADADABBCBABEBEDDABEEEBB
计算
(1) 该字符串的霍夫曼码
(2) 该字符串的熵
(3) 该字符串的平均码长
(4) 编码前后的压缩比

参考技术A #include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <malloc.h>
#include <conio.h>

typedef struct
unsigned int weight;
unsigned int parent,lchild,rchild;
HTNode,*HuffmanTree;

typedef char **HuffmanCode;

typedef struct
unsigned int s1;
unsigned int s2;
MinCode;

void Error(char *message);
HuffmanCode HuffmanCoding(HuffmanTree HT,HuffmanCode HC,unsigned int *w,unsigned int n);
MinCode Select(HuffmanTree HT,unsigned int n);

void Error(char *message)

clrscr();
fprintf(stderr,"Error:%s\n",message);
exit(1);


HuffmanCode HuffmanCoding(HuffmanTree HT,HuffmanCode HC,unsigned int *w,unsigned int n)

unsigned int i,s1=0,s2=0;
HuffmanTree p;
char *cd;
unsigned int f,c,start,m;
MinCode min;
if(n<=1) Error("Code too small!");
m=2*n-1;
HT=(HuffmanTree)malloc((m+1)*sizeof(HTNode));
for(p=HT,i=0;i<=n;i++,p++,w++)

p->weight=*w;
p->parent=0;
p->lchild=0;
p->rchild=0;

for(;i<=m;i++,p++)

p->weight=0;
p->parent=0;
p->lchild=0;
p->rchild=0;

for(i=n+1;i<=m;i++)

min=Select(HT,i-1);
s1=min.s1;
s2=min.s2;
HT[s1].parent=i;
HT[s2].parent=i;
HT[i].lchild=s1;
HT[i].rchild=s2;
HT[i].weight=HT[s1].weight+HT[s2].weight;

printf("HT List:\n");
printf("Number\t\tweight\t\tparent\t\tlchild\t\trchild\n");
for(i=1;i<=m;i++)
printf("%d\t\t%d\t\t%d\t\t%d\t\t%d\n",
i,HT[i].weight,HT[i].parent,HT[i].lchild,HT[i].rchild);
HC=(HuffmanCode)malloc((n+1)*sizeof(char *));
cd=(char *)malloc(n*sizeof(char *));
cd[n-1]='\0';
for(i=1;i<=n;i++)

start=n-1;
for(c=i,f=HT[i].parent;f!=0;c=f,f=HT[f].parent)
if(HT[f].lchild==c) cd[--start]='0';
else cd[--start]='1';
HC[i]=(char *)malloc((n-start)*sizeof(char *));
strcpy(HC[i],&cd[start]);

free(cd);
return HC;


MinCode Select(HuffmanTree HT,unsigned int n)

unsigned int min,secmin;
unsigned int temp;
unsigned int i,s1,s2,tempi;
MinCode code;
s1=1;s2=1;
for(i=1;i<=n;i++)
if(HT[i].parent==0)

min=HT[i].weight;
s1=i;
break;

tempi=i++;
for(;i<=n;i++)
if(HT[i].weight<min&&HT[i].parent==0)

min=HT[i].weight;
s1=i;

for(i=tempi;i<=n;i++)
if(HT[i].parent==0&&i!=s1)

secmin=HT[i].weight;
s2=i;
break;

for(i=1;i<=n;i++)
if(HT[i].weight<secmin&&i!=s1&&HT[i].parent==0)

secmin=HT[i].weight;
s2=i;

if(s1>s2)

temp=s1;
s1=s2;
s2=temp;

code.s1=s1;
code.s2=s2;
return code;


void main()

HuffmanTree HT=NULL;
HuffmanCode HC=NULL;
unsigned int *w=NULL;
unsigned int i,n;
clrscr();
printf("Input n:\n");
scanf("%d",&n);
w=(unsigned int *)malloc((n+1)*sizeof(unsigned int *));
w[0]=0;
printf("Enter weight:\n");
for(i=1;i<=n;i++)

printf("w[%d]=",i);
scanf("%d",&w[i]);

HC=HuffmanCoding(HT,HC,w,n);
printf("HuffmanCode:\n");
printf("Number\t\tWeight\t\tCode\n");
for(i=1;i<=n;i++)
printf("%d\t\t%d\t\t%s\n",i,w[i],HC[i]);



程序运行:
首先用户先输入一个数n,以实现n个节点的Huffman Tree
之后输入权值w[1]~w[n],注意是unsigned int型数值。
然后程序自动生成Huffman Tree的存储形式的一张表格。
最后是Huffman Coding。

Sample Input:

Input n:
8
Enter weight:
w[1]=5
w[2]=29
w[3]=7
w[4]=8
w[5]=14
w[6]=23
w[7]=3
w[8]=11

Sample Output:

HT List:
Number weight parent lchild rchild
1 5 9 0 0
2 29 14 0 0
3 7 10 0 0
4 8 10 0 0
5 14 12 0 0
6 23 13 0 0
7 3 9 0 0
8 11 11 0 0
9 8 11 1 7
10 15 12 3 4
11 19 13 8 9
12 29 14 5 10
13 42 15 6 11
14 58 15 2 12
15 100 0 13 14
HuffmanCode:
Number Weight Code
1 5 0110
2 29 10
3 7 1110
4 8 1111
5 14 110
6 23 00
7 3 0111
8 11 010本回答被提问者采纳

以上是关于霍夫曼编码的主要内容,如果未能解决你的问题,请参考以下文章

霍夫曼编码

霍夫曼编码

霍夫曼编码(急求啊!!)

什么是霍夫曼编码

霍夫曼树和霍夫曼编码以及霍夫曼编码的应用

哈夫曼编码