算法分析与设计2004春.课件.第05讲

算法分析与设计2004春.课件.第05讲

ID:33838283

大小:153.15 KB

页数:19页

时间:2019-02-28

算法分析与设计2004春.课件.第05讲_第1页
算法分析与设计2004春.课件.第05讲_第2页
算法分析与设计2004春.课件.第05讲_第3页
算法分析与设计2004春.课件.第05讲_第4页
算法分析与设计2004春.课件.第05讲_第5页
资源描述:

《算法分析与设计2004春.课件.第05讲》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、Lecture5.GreedyAlgorithm•Huffmancode•Matroid(拟阵续)清华大学软件学院宋斌恒1HuffmanCodes•Huffmancodes用于数据压缩一般可以达到压缩20%到90%的效果。•什么是编码:编码实质上是用给定的一组符号集的字符串到另外一组符号集的映射。•例如用{0,1}字符串到所有英文字符{a,b,c,…}的映射的8位码清华大学软件学院宋斌恒21Prefixcodes•我们只考虑任一个编码字不是另一个编码字的前缀的编码。•这样的编码叫PrefixCodes。•下页给

2、出几种编码例子:清华大学软件学院宋斌恒3abcdefFrequency(inthousands)4513121695Fixed-lengthcodeword000001010011100101Variable-lengthcodeword010110011111011100Figure16.3Acharacter-codingproblem.Adatafileof100,000characterscontainsonlythecharactersa-f,withthefrequenciesindicated.I

3、feachcharacterisassigneda3-bitcodeword,thefilecanbeencodedin300,000bits.Usingthevariable-lengthcodeshown,thefilecanbeencodedin224,000bits.2Prefixcodesaredesirablebecausetheysimplifydecoding.•示例:在上图非定长编码下,串0001110101唯一代表字符串aaaeab清华大学软件学院宋斌恒5编码表示方式•利用树来表示,下图表示

4、等长编码:1008614582814a:45b:13c:12d:16e:9f:5清华大学软件学院宋斌恒63Anoptimalcodeforafileisalwaysrepresentedbyafullbinarytree.1008614582814a:45b:13c:12d:16e:9f:5清华大学软件学院宋斌恒7GivenatreeTcorrespondingtoaprefixcode,itisasimplemattertocomputethenumberofbitsrequiredtoencodeafile

5、.LetcdenotethecharacterinalphabetC,f(c)denotethefrequencyofcinthefile,dT(c)thedepthofcinthetree.ThenumberofbitsrequiredtoencodeafileisthusB(T)=f(c)d(c)∑Tc∈CwhichwedefineasthecostofthetreeT.清华大学软件学院宋斌恒841001005514a:45862530582814a:45b:13c:12d:16e:9f:514d:16c:

6、12b:13f:5e:9Figure16.4TreescorrespondingtothecodingschemesinFigure16.3.Eachleafislabeledwithacharacteranditsfrequencyofoccurrence.Eachinternalnodeislabeledwiththesumofthefrequenciesoftheleavesinitssubtree.(a)Thetreecorrespondingtothefixed-lengthcodea=000,⋯,f

7、=101.(b)Thetreecorrespondingtotheoptimalprefixcodea=0,b=101,⋯,f=1100.ConstructingaHuffmancode•HuffmaninventedagreedyalgorithmthatconstructsanoptimalprefixcodecalledaHuffmancode.•下面我们给出Huffmancode算法的伪代码清华大学软件学院宋斌恒1051.Huffman(C)1.nÅ

8、C

9、2.QÅC//Qisapriorityqueue

10、=newQ(C)3.ForiÅ1ton-11.Doallocateanewnodez2.Left[z]ÅxÅQ.Extract-Min()3.Right[z]ÅyÅQ.Extract-Min()4.f[z]Åf[x]+f[y]5.Q.insert(z)4.ReturnQ.Extract-Min()清华大学软件学院宋斌恒11f:5e:9c:12b:13d:16a:45清华大学软件学院宋斌

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。