搜索资源列表
哈夫曼编/译码器课程设计
- 利用哈夫曼编码进行信息通讯可以大大提高信道利用率,缩短信息传输时间,降低传输成本。但是,这要求在发送端通过一个编码系统对待传数据预先编码,在接收端将传来的数据进行译码(复原)。对于双工信道(即可以双向传输信息的信道),每端都需要一个完整的编/译码系统。试为这样的信息收发站写一个哈夫曼码的编译码系统 基本要求: 1.接收原始数据:从终端读入字符集大小n,n个字符和n个权值,建立哈夫曼树 2.编码:利用已建好的哈夫曼树,对文件中的正文进行编码 3.译码:利用已建好的哈夫曼树将代码进行译码.
简单哈夫曼编/译码器
- 一个简单的哈夫曼编/译码器。能从文件读入n个字符和m个权值,建立哈夫曼树,并将它保存。能利用已建好的哈夫曼树对文件进行编码。能利用已建好的哈夫曼树将文件中的代码进行译码。
c++实现哈夫曼编码
- 该代码可以输入信号源的数据,然后输出相应的编码结果以及熵等等…………
哈夫曼编码
- 详细介绍了哈夫曼树
最终哈夫曼编码.rar
- 统计文件中字符的个数和种类,分析,图形显示构造出哈夫曼树,statistics document the number and character types, analysis, graphics constructed Huffman tree
哈夫曼的编译码
- 本程序所要解决的问题如下描述: 利用哈夫曼编码进行通信可以大大提高信道利用率,缩短信息传输时间,降低传输成本。但是,这要求在发送端通过一个编码系列对待传数据预先编码,在接收端将传来的数据进行译码(复原)。对于双工信道(即可以双向传输信息的信道),每端都需要一个完整的编/译码系统。 2. 本程序可从终端输入数据及对应的权值,也可从文件中直接读取进行哈夫曼编/译码功能。
哈夫曼编码——高端
- 这是一个高端的哈夫曼编码 包含绝大部分需要的功能 写得比较完整 适合初学者参考
哈夫曼编译器
- 实现对一个简单文本进行哈夫曼编码译码,并打印哈夫曼树(Huffman encoding and decoding of a simple text)
哈夫曼源码
- 根据所输入的字符已经权值构造哈夫曼树以及其编码,并将哈夫曼树打印出来,然后显示各个字符的编码(According to the input characters have been weighted structure Huffman tree and its encoding, and the Huffman tree print out, and then display the encoding of each character)
哈夫曼编码
- 哈夫曼编码的实现,数据结构课程中的经典算法(c code for Huffman which is a critical algorithm in data construction)
哈夫曼编码示例
- 使用类实现哈夫曼树,在此基础上实现了一个简单的哈夫曼编码译码系统。(Using the class to achieve Huffman tree, on this basis, to achieve a simple Huffman coding and decoding system.)
9500101张三丰-哈夫曼编码译码
- 通过哈夫曼编码译码把一段文本的编译计算有多少数值出现多少次(How many times do you compile and calculate a text by Huffman coding?)
哈夫曼编码
- 这个文档是我大学时候多媒体的一个实验作业,里面要求实现哈夫曼编码。大家可以在文档中自行查阅。(This document is an experimental operation of multimedia in my university. It requires four simple compression methods, namely, Huffman, adaptive Huffman, LZW and arithmetic coding. Because of the need o
自适应哈夫曼编码
- 这是我大学的一个作业,要求实现自适应哈夫曼编码。具体请看文档(This is a job in my university multimedia, which requires arithmetic coding. Please see the document)
哈夫曼编码器,译码器问题
- 完成哈夫曼编码,译码问题,用C语言实现编码器,译码器的功能。(Complete the Hoffman code, decoding the problem, using the C language to implement the encoder, decoder functions.)
哈夫曼树
- 主要实现:创建一颗哈夫曼树,并输出每个节点的哈夫曼编码。(The main achievement is to create a Huffman tree and output Huffman coding for each node.)
哈夫曼编码译码
- 哈夫曼编码译码,学习数据结构二叉树的一个应用,解压压缩软件的基础,哈夫曼编码(Huffman encoding and decoding, learning data structure, an application of two branch tree, decompressing the basis of compression software, Huffman coding.)
基于哈夫曼编码的文本文件压缩与解压缩
- 使用哈夫曼编码的方法对文本进行压缩。可以是加密压缩,也可以是无密压缩(Huffman coding is used to compress the text. It can be encrypted compression or non dense compression)
哈夫曼编码器设计实验报告
- 要求对一段数据序列进行哈夫曼编码,使得平均码长最短,输出各元素编码和编码后的数据序列。 ①组成序列的元素是[0-9]这10个数字,每个数字其对应的4位二进制数表示。比如5对应0101,9对应1001。 ②输入数据序列的长度为256。 ③先输出每个元素的编码,然后输出数据序列对应的哈夫曼编码序列。(Design a 1MHz FIR low pass filter. Huffman coding is required for a section of data sequence to m
哈夫曼编码与字母频率统计
- 统计词频并构建哈夫曼树,左边为0,右边为1。(HuffmanTree ,calculate every the number of every zee and using '1' and '0' create a tree and printf the string.)