网站大量收购独家精品文档,联系QQ:2885784924

实验四 哈夫树与哈夫曼编码.docx

  1. 1、本文档共9页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
实验四 哈夫树与哈夫曼编码

实验四 哈夫曼树与哈夫曼编码 一、实验目的 1、使学生熟练掌握哈夫曼树的生成算法。 2、熟练掌握哈夫曼编码的方法。 二、实验内容 本次实验提供4个题目,难度相当,学生可以根据自己的情况选做,其中题目一是必做题,其它选作! 题目一、哈夫曼树和哈夫曼编码 [问题描述]  一电文,有若干个不同字符,要求从终端输入这些不同字符及其出现的频率,然后对这些字符进行哈夫曼编码,并输出。 [测试数据] 利用教材P.148 例6-2中的数据调试程序 (可自己设定测试数据)。 [选作内容] 1、打印出该哈夫曼树 2、若从终端输入任意一段电文(假设仅为26个大小写英文字母),试编程高效地求出该段电文的哈夫曼编码。 提示:如何快速统计不同字符的出现频率 3、译码:将上述1的编码结果还原成电文。 三、算法设计 设计思路 设计过程 1、程序所需头文件已经预处理宏定义以及变量如下 #includeiostream #includestdio.h #includestdlib.h #includeconio.h #includestring.h using namespace std; typedef struct node { char ch; int data; struct node *parent; struct node *lchild,*rchild,*next; }hufnode; typedef hufnode *linkhuf; typedef struct HFcode { char ch; int data; int code[20]; int top; }tagHFcode; linkhuf insert(linkhuf root,linkhuf s) { linkhuf p1,p2; if(root==NULL) root=s; else { p1=NULL; p2=root; while(p2p2-data s-data) { p1=p2; p2=p2-next; } s-next=p2; if(p1==NULL) root=s; else p1-next=s; } return root; } 2、创建哈夫曼树 void createhuffman(linkhuf *root) { linkhuf s,rl,rr; while(*root(*root)-next) { rl=*root; rr=(*root)-next; *root=rr-next; s=(linkhuf)malloc(sizeof(hufnode)); s-next=NULL; s-data=rl-data+rr-data; s-parent=NULL; s-lchild=rl; s-rchild=rr; rl-parent=s; rr-parent=s; rl-next=rr-next=NULL; *root=insert(*root,s); } } void inorder(linkhuf t) { if(t) { inorder(t-lchild); printf(%5d,t-data); inorder(t-rchild); } } 3、哈夫曼编码 void HFcoding(linkhuf root,linkhuf temp,tagHFcode HFcode[],int *leaftop) { if(root!=NULL) { if(root-lchild==NULLroot-rchild==NULL) { temp=root; HFcode[(*leaftop)].top=0; HFcode[(*leaftop)].ch=root-ch; HFcode[(*leaftop)].data=root-data; while(temp-parent!=NULL) { if(temp-parent-lchild==temp) HFcode[(*leaftop)].code[HFcode[(*leaftop)].top]=0; else HFcode[(*leaftop)].code[HFcode[(*leaftop)].top]=1; HFcode[(*leaftop)].top++; temp=temp-parent; } (*leaftop)++; } HFcoding(root-lchild,temp,HFcode,leaftop); HFcoding(root-lchild,temp,HFcode,leaftop); } } 4、输出求得的哈夫曼编码 void OutCoding(tagHFcode HFcode[],int leaftop) { int i,j=0

文档评论(0)

gix469 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档