欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    哈弗曼编码实验报告-无损压缩实验报告(共7页).doc

    • 资源ID:13286859       资源大小:123.50KB        全文页数:7页
    • 资源格式: DOC        下载积分:20金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要20金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    哈弗曼编码实验报告-无损压缩实验报告(共7页).doc

    精选优质文档-倾情为你奉上哈弗曼编码实现无损压缩实验报告一、 实验内容通过C+编程实现。要求:1) 字符串的输入是手工输入的;2) 通过程序实现编码,最终在屏幕上显示编码结果,例如,如果选用huffman编码,则要显示字符串的编码以及平均码长;二、 源代码#include<iostream.h>#include<math.h>#include<string.h>#include<stdlib.h>#if !defined _HUFFMANTREE_H_#define _HUFFMANTREE_H_class HuffmanTreepublic: unsigned int Weight; unsigned int Parent; unsigned int lChild; unsigned int rChild;typedef char *HuffmanCode;/*从结点集合中选出权值最小的两个结点将值分别赋给s1和s2*/void Select(HuffmanTree* HT,int Count,int *s1,int *s2) unsigned int temp1=0; unsigned int temp2=0; unsigned int temp3; for(int i=1;i<=Count;i+) if(HTi.Parent=0) if(temp1=0) temp1=HTi.Weight; (*s1)=i; else if(temp2=0) temp2=HTi.Weight; (*s2)=i; if(temp2<temp1) temp3=temp2; temp2=temp1; temp1=temp3; temp3=(*s2); (*s2)=(*s1); (*s1)=temp3; else if(HTi.Weight<temp1) temp2=temp1; temp1=HTi.Weight; (*s2)=(*s1); (*s1)=i; if(HTi.Weight>temp1&&HTi.Weight<temp2) temp2=HTi.Weight; (*s2)=i; /*霍夫曼编码函数*/void HuffmanCoding(HuffmanTree * HT, HuffmanCode * HC, int *Weight, int Count) int i; int s1,s2; int TotalLength; char* cd; unsigned int c; unsigned int f; int start; if(Count<=1) return; TotalLength=Count*2-1;HT = new HuffmanTree(TotalLength+1)*sizeof(HuffmanTree); for(i=1;i<=Count;i+) HTi.Parent=0; HTi.rChild=0; HTi.lChild=0; HTi.Weight=(*Weight); Weight+; for(i=Count+1;i<=TotalLength;i+) HTi.Weight=0; HTi.Parent=0; HTi.lChild=0; HTi.rChild=0; /建造霍夫曼树 for(i=Count+1;i<=TotalLength;+i) Select(HT, i-1, &s1, &s2); HTs1.Parent = i; HTs2.Parent = i; HTi.lChild = s1; HTi.rChild = s2; HTi.Weight = HTs1.Weight + HTs2.Weight; /输出霍夫曼编码 (*HC)=(HuffmanCode)malloc(Count+1)*sizeof(char*); cd = new charCount*sizeof(char); cdCount-1='0' for(i=1;i<=Count;+i) start=Count-1; for(c = i,f = HTi.Parent; f != 0; c = f, f = HTf.Parent) if(HTf.lChild = c) cd-start='0' else cd-start='1' (*HC)i = new char (Count-start)*sizeof(char); strcpy(*HC)i, &cdstart); delete HT;delete cd;/* 在字符串中查找某个字符* 如果找到,则返回其位置*/int LookFor(char *str, char letter, int count) int i; for(i=0;i<count;i+) if(stri=letter) return i; return -1;void OutputWeight(char *Data,int Length, char *WhatLetter, int *Weight,int *Count) int i; char* Letter = new charLength; int* LetterCount = new intLength; int AllCount=0; int Index; int Sum=0; float Persent=0; for(i=0;i<Length;i+) if(i=0) Letter0=Datai; LetterCount0=1; AllCount+; else Index=LookFor(Letter,Datai,AllCount); if(Index=-1) LetterAllCount=Datai; LetterCountAllCount=1; AllCount+; else LetterCountIndex+; for(i=0;i<AllCount;i+) Sum=Sum+LetterCounti; (*Weight) = new intAllCount; (*WhatLetter) = new charAllCount; for(i=0;i<AllCount;i+) Persent=(float)LetterCounti/(float)Sum; (*Weight)i=(int)(1000*Persent); (*WhatLetter)i=Letteri; (*Count)=AllCount;delete Letter;delete LetterCount;#endif/*main.cppvoid main() HuffmanTree * HT = NULL; HuffmanCode HC; char Data100; char *WhatLetter; int *Weight; int Count;cout<<"请输入一行文本数据:"<<endl; cin>>Data; cout<<endl; OutputWeight(Data,strlen(Data),&WhatLetter,&Weight,&Count);HuffmanCoding(HT, &HC, Weight, Count);cout<<"字符 出现频率 编码结果"<<endl; int k=0; for(int i = 0; i<Count; i+) cout<<WhatLetteri<<" " cout<<Weighti/10<<"%t" cout<<HCi+1<<endl;int j=strlen(HCi+1); k=k+Weighti*j; cout<<"平均码长为"<<k/10; cout<<endl;三、程序运行专心-专注-专业

    注意事项

    本文(哈弗曼编码实验报告-无损压缩实验报告(共7页).doc)为本站会员(飞****2)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开