搜索资源列表
huffman 方案3
- huffman 编码译码器的实现。可以完整实现由用户输入字母进行编码和译码,使对网络通信的模拟-Huffman coding decoder realized. Integrity can be achieved by user input letters coding and decoding, the analog network communication
huffman另类方案
- huffman 编码译码另类方案 ,所有权值有用户自定义,方便用户使用和自行决定-Huffman encoding decoding an alternative plan, ownership values are user-defined, user-friendly and to decide
实验5
- 哈夫曼编码/译码 背景介绍: 利用哈夫曼编码进行通信可以大大提高信道利用率,缩短信息传输时间,降低传输成本。但是,这要求这发送端通过一个编码系统对待传数据预先编码,在发送端将传来的数据进行译码(复原)。对于双工信道。每端都需要一个完整的编译码系统。本程序将为这样的信息收发站写一个哈夫曼的编译码系统。 哈夫曼编码/译码: 程序运行步骤: 1、建立哈夫曼树,从键盘输入字符集大小,字符以及频度。 2、对字符进行编码,输出编码结果,分单个句子和整个句子输出,编码导入
哈夫曼译码
- [基本要求] 一个完整的系统应具有以下功能: (1)I:初始化(Initialization)。从终端读入字符集大小n,以及n个字符和n个权值,建立哈夫曼树,并将它存于文件hfmTree中。 (2)E:编码(Encoding)。利用已建好的哈夫曼树(如不在内存,则从文件hfmTree中读入),对文件ToBeTran中的正文进行编码,然后将结果存入文件CodeFile中。 (3)D:译码(Decoding)。利用已建好的哈夫曼树将文件CodeFile中的代码进行译码,结果存入文件T
huffman_tree(sjjg)
- 1、根据用户指定的字符表和频度的实际统计数据建立Huffman树; 2、其中其叶子结点表示字符的权值及父母、左、右孩子等结点的信息; 3、其左右分支分别用代码0、1表示; 4、本系统的目的是为用户提供编/译码系统,根据用户输入的字符依字符集的权值进行编码保存; 5、根据接收到的编码进行译码; 6、输出其内容-1, according to user-specified character tables and frequency of the actual statist
small
- 这是HUFFMAN编码与译码-This is the encoding and decoding HUFFMAN
hafuman
- 哈夫曼编码/译码器 1)问题描述 设计一个利用哈夫曼算法的编码,重复地显示并处理以下项目,直到选择退出为止。 2)基本要求 (1)初始化:键盘输入字符集大小n、n个字符和n个权值,建立哈夫曼树; (2)编码:利用建好的哈夫曼树生成哈夫曼编码; (3)输出编码;
viterbi_de
- 卷积码译码霍夫曼编码及数学概率论贝叶斯公式; 卷积译码软判决通过3位量化可以比硬判决提高约2dB信噪比; 了解最大似然译码准则; -Soft Decoding Scheme of Convolution Codes Combined with Huffman Coding.Simulation study of the performance of ternary line codes under Viterbi decoding & Soft-decision decoding
ImageProcessing
- 卷积码的编译码,译码算法为维特比算法,适合学习信道编码课程的初学者参考-Encoding and decoding convolutional codes, decoding algorithm for the Viterbi algorithm
perfect code
- 这个程序用来实现HUFFMAN编码及译码,程序小巧而实用-the procedures used to achieve HUFFMAN encoding and decoding, compact and practical procedures
HuffmanTree
- 该程序可以对输入的字符进行编码,构建哈弗曼树,也可以实现哈弗曼树的译码功能-The program can input characters encoding,哈弗曼build tree, it can be achieved哈弗曼tree decoding function
huffman
- 编写完整的系统,要求具有以下功能: 1、 I:初始化(Initialization)。从终端读入字符集大小n,以及n个字符和n个权值,建立哈夫曼树,并将它存入文件hfmTree中。 2、 E:编码(Encoding)。利用以建好的哈夫曼树(如不在内存,则从文件hfmTree中读入),对文件ToBeTran中的正文进行编码,然后将结果存入文件CodeFile中。 3、 D:译码(Decoding)。利用已建好的哈夫曼树将文件CodeFile中的代码进行译码,结果存入文件TextFile
CharacterCalculate
- 统计任意输入的string中各种字符个数信息,建立哈夫曼编码,然后可以对任意输入的字符串进行译码-Arbitrary input statistics of the various characters of the string in the number of information, the establishment of Huffman coding, and then can enter any string for decoding
Havermanncoding
- 哈弗曼编码的应用 本设计要求 1.对输入的一串电文字复试线哈弗曼编码2.在对哈弗曼编码生成的代码串进行译码3.输出电文字符串 -Havermann coded design requirements apply this one. For input string of text re-testing power line Havermann code 2. Havermann code in the generated code string to decode 3. Output messa
5
- 1.C或 C++; 2.从终端读入字符集大小n,以及n个字符和n个权值,建立哈夫曼树并将它存于文件hfmTree中.将已在内存中的哈夫曼树以直观的方式(比如树)显示在终端上; 3.利用已经建好的哈夫曼树(如不在内存,则从文件htmTree中读入),对文件ToBeTran中的正文进行编码,然后将结果存入文件CodeFile中,并输出结果,将文件CodeFile以紧凑格式先是在终端上,每行50个代码。同时将此字符形式的编码文件写入文件CodePrint中。 4.利用已建好的哈夫曼树将文件
huffumantree
- 利用哈弗曼树实现编码译码 打印哈弗曼树 等功能 -coding and decoding using huffumantree
huffmanTree
- 哈夫曼树编码译码器的课程设计报告,本人自己写的。-huffmanTree
ldpc-code-final-test
- 用于LDPC编码译码的仿真实现。包括随机生成校验矩阵、由校验矩阵产生生成矩阵、编码、加随机噪声、译码等内容。-For LDPC codec simulation. Including randomly generated check matrix, generated by the parity check matrix generator matrix, coding, plus random noise, such as decoding.
CRC_encod_and_decod
- 这是我在设计程序中编写的CRC的编码译码模块 压缩包一共两个程序 一个是CRC 编码 一个是CRC译码 所有输入变量和输出变量均在程序中用注释标注 -This is a program that can encode CRC and decode CRC. ALL input and output variable has been explained by annotation
hufferman
- 霍夫曼树的编码译码,输入字母或数字 霍夫曼树的编码译码,输入字母或数字-Hoffman tree encoding and decoding, input letters or numbers