搜索资源列表
Maxthon-v1.53
- 这个是Haffman的实现方法,也就是还可以的代码,希望采纳,^_^-this is the method, which is also the code, adopted ^ _ ^
haffman
- 信息论与编码报告。内源程序为: 对给定信源符号进行哈夫曼编码,然后输出码字,平均码长,信息传输率。
haffman
- 从TXT文件读入字符建立哈夫曼树,编码结果在txt文件输出,从txt文件读出编码,译成字符
haffman.rar
- 本程序包括建立haffman树,haffman编码,haffman译码系统,并且可以执行、,haffman
haffman
- 用于计算信息熵的哈弗曼编码的c++源代码,含实验报告和结果分析-it contents the C++ source of haffman and the reports and analysis
Express
- 利用Haffman编码实现的压缩软件,可以压缩二进制文件,效果很好。-Use Haffman coding to achieve compression software, binary files can be compressed, very good.
Haffman
- 哈弗曼树:分别用双亲孩子法以及二叉树前序遍历法实现了哈弗曼编码。非常适合初学者阅读。-哈弗曼tree: two-parent children were before the law and order binary tree traversal method哈弗曼encoding achieved. Very suitable for beginners to read.
haffman
- 哈弗曼编码,用C实现,有具体的源程序、实验结果、实验报告。-哈弗曼encoding, using C to achieve, there is a specific source, the experimental results, laboratory reports.
04
- 运用c及c++程序来实现哈夫曼编码和译码的过程,以树形方式输出-haffman
Haffman
- 哈弗曼树的编码与译码 采用VC++6.0编译-Haffmantree encoding and decoding using VC++6.0 compiler
Haffman
- 开发环境vs2005,所用到得算法是数据结构上面的二叉树结构。-Development environment vs2005, used by the algorithm is a data structure of the binary tree structure above.
traffic
- 用Visual C++编写的基于Haffman编码的交通咨询源码,直接打开工程文件即可-Prepared using Visual C++ code based on the Transport Advisory Haffman source code, open the project file can be directly
Haffman
- 自己写的哈弗曼编码、译码程序。可以向.txt文件写入编、译码结果。(目前尚未实现自动读入编码功能)-My own Haffman coding, decoding process. Can. Txt file is written series, decoding the results.
haffman
- 哈夫曼编码 问题描述:利用哈夫曼编码,实现压缩和解压缩 基本要求: 对于给定的一组字符,可以根据其权值进行哈夫曼编码,并能输出对应的哈夫曼树和哈夫曼编码;实现哈夫曼解码 提高要求: (1) 能够分析文件,统计文件中出现的字符,再对文件进行编码,实现文件的压缩和解压缩 (2) 能够对于文件的压缩比例进行统计 (3) 能够打印文件 这是数据结构的课程设计-Huffman Coding Problem Descr iption: Using the Huffman co
haffman-code
- huffman coding relese
Haffman
- 信息论课程设计,C语言简单实现哈夫曼编码。-Information theory, curriculum design, C language simple implementation of Huffman coding.
haffman
- 输入文件路径,为指定文件进行编码、解码操作,同时为文件打印haffman tr-haffman
haffman
- 一、需求分析 问题描述: 利用哈夫曼编码进行通信可以大大提高信道利用率,缩短信息传输时间,降低传输成本。但是,这要求在发送端通过一个编码系统能够对待传输数据预先编码,在接收端将传来的数据进行译码。对于双工信道(即可以双向传输信息的信道),每段都需要一个完整的编/译系统。试为这样的信息收发站写一个哈夫曼的编译码系统。 基本要求: 一个完整的系统应具有以下功能: (1) I:初始化(Initialization)。从终端读入字符集大小n,以及n个字符和n个权值, 建立哈夫曼树
Haffman
- 北邮复试上机题:赫夫曼编码 给出n个有权值的结点,构造赫夫曼树,输出所有这n个结点的权值与其赫曼编码长度(即该结点在所构造的赫曼树中的深度)的乘积的总和。 Input 第一行是一个正整数n,表示一共有n个结点。 第二行为n个整数,分别表示这n个结点的权值。 Output 输出所有这n个结点的权值与其赫曼编码长度的乘积的总和。 Sample Input 5 1 2 2 5 9 Sample Output 37- Huffman coding Th