搜索资源列表
HuffmanCode
- 对文本信息进行哈夫曼加密,并将哈夫曼树及密码保存,然后进行解密。-Huffman text information encryption, and password and Huffman tree preservation, and then decrypt.
HuffmanCode
- C++实现哈弗曼编码,学习数据结构的时候要用的-C++ Achieve哈弗曼coding, data structures when learning to use the
huffmancode
- 霍夫曼编码前缀编码Huffman Coding-Huffman Codeing
HuffmanCode
- 哈弗曼编/译码程序源代码,可以由用户读入哈弗曼树,也可以从文件读入哈弗曼树-HuffmanCode Encode/Decode
huffmancode
- 这是我近来完成的一个用哈夫曼树进行二进制编码操作的数据结构作业。用户通过输入26个字母,程序会根据26个字母出现的频率自动构建哈夫曼树并输出这些字母的二进制编码。-This is my recently completed a binary tree with Huffman encoding operation of the data structure operations. User by entering the 26 letter, the program will be 26 let
HuffmanCode
- 数据结构课程Huffman编码实验课程作业,具有完整控制台界面,实现功能1.由字符串生成huffman码2.打印huffman树3.由huffman码还原为字符串-Data structure course experiment coursework Huffman coding, with a complete control panel interface, the realization of function 1. Huffman code generated by the string
huffmancode
- huffman编码,能够对输入的序列按权值进行最优二叉树排序,按最优二叉树排序进行简单编码。-huffman coding, be able to input the right values according to the optimal sequence of binary sort order by a simple optimal binary codes.
huffmancode
- 有关huffman编码的具体实现的源代码,算法参考严蔚敏版算法课本的huffmancode伪代码,供初学者参考-Concrete realization of the huffman encoding the source code, algorithm reference Yan Wei-min version of the textbooks huffmancode algorithm pseudo-code for beginners reference
HuffmanCode
- 对一篇英文文章,统计各字符出现的次数,实现Huffman编码,输出每个字符出现的次数和编码,其中求最小权值要求用堆实现-For a articles in English, output the number of characters,and output the each character encoding
HuffmanCode
- huffman树编码实现,GLX-huffman tree coding to achieve, GLX. . . .
HuffmanCode
- 本程序是数据结构中常见的哈弗曼编码的实现,通过统计文本文件中的字符出现次数,在另一个文本文件中输出统计次数及对应编码,在两一个文本文件中可以给出英语短文对应的翻译编码。-This procedure is common Havermann data structure encoded to achieve, through the statistics text file in the number of characters that appear in another text file i
HuffmanCode
- 严蔚敏 数据结构(c语言版)中最优二叉树(赫夫曼树)赫夫曼编码 c语言实现-YAN Wei-min data structure (c-language version) in the optimal binary tree (Huffman tree) Huffman encoding c language
HuffmanCode
- 现在有篇文章,请用二进制前缀编码对文章中出现所有字符进行其编码,使编码后的文章总长最短。 多组输入,第一个正整数T表示组数。 每组第一行有一个正整数n,1≤n≤100000表示所用的字符种数。 接下来一行为n个正整数,表示每个字符在文章中出现的次数。 输出编码的最小长度-There are articles, please use the binary prefix code for the article appeared in the encoding of
HuffmanCode
- 霍夫变换 计算机VC++语言实现数据结构中霍夫变换算法,编译通过-Hough transform VC++ computer language data structures Hough transform algorithm, compiled by
HuffmanCode
- HuffmanCode编译码系统 HuffmanCode编译码系统 -HuffmanCode encoding and decoding system HuffmanCode encoding and decoding system HuffmanCode encoding and decoding system decoding system HuffmanCode
huffmancode
- 一个哈夫曼算法.具体题目如下: 题目要求:1)建立一正文文件(本程序中建立的文件名文test.txt),向其中输入字符(本程序中可输入任意ASCII值) 2)通过哈夫曼算法求出文件中字符的相应编码 3)建立一与正文文件(test.txt)对应的编码文件(本程序中为bainma.txt)--a Huffman algorithm. Specific topics are as follows : Subject : 1) the establishment of a text document (
hafumanbianma
- c语言编写的哈夫曼编码。设需要编码的字符集为{d1, d2, …, dn},它们出现的频率为 {w1, w2, …, wn},应用哈夫曼树构造最短的不等长编码方案。 数据结构与算法 typedef char *HuffmanCode //动态分配数组,存储哈夫曼编码 typedef struct { unsigned int weight //用来存放各个结点的权值 unsigned int parent,LChild,RChild //指向双亲、孩子结点的指针
huffmancode
- 哈弗曼编码的多媒体文件压缩,计算压缩比,输出编码结果-Hafu Man coding
HuffmanCode
- 在电报通讯中,电文是以二进制的0、1序列传送的。字符集中的字符的使用频率是不同的(比如e和t的使用较之q和z要频繁得多),哈夫曼编码可以使得编码的总长最短,从而相同的位长可以传送更多的信息。本程序用c语言来仿真哈夫曼编码的过程,其中运用动态分配数组存储哈夫曼树和动态分配数组存储哈夫曼编码表等c语言常用知识。另外,程序中包含极其详细的注解,十分有利于学习。 -Telegraph communications, the message is binary 0, 1 sequence transm
HuffmanCode
- 一个字符串哈夫曼编码的计算程序。附带一些堆栈的类,可以生成一段文字的哈夫曼编码,并予以显示。-Huffman coding a string calculation program. Classes with some of the stack, you can generate a text Huffman coding, and displayed.