Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - encoder
Search - encoder - List
这是一个用C语言编写的哈夫曼编/译码器程序,与严蔚敏版数据结构习题的5.2相对应啊-This is a C language prepared by the Huffman encoder/decoder procedures, and Yan Wei-min data structure Exercise version 5.2 should be relatively ah
Date : 2026-01-01 Size : 2kb User : 火山

老问题,Huffuman编码,对任意的文本文件进行编码,输出到文件,同时可以对编码文件进行解码-old question Huffuman coding, right arbitrary text files encoded output to a file. the encoder can also decode documents
Date : 2026-01-01 Size : 15kb User : 纵横四海

哈夫曼编码器,提供了多种的输入方法, 使用方便,速度很快-Huffman encoder, providing a wide variety of input methods, easy to use, fast
Date : 2026-01-01 Size : 2kb User : zhouyou

DL : 0
哈夫曼编/译码器 问题描述:给定电文进行哈夫曼编码,给定编码进行哈夫曼译码。要求电文存储在文件1中,编码后的结果存储在文件2中,给定编码存储在文件3中,译码后的结果存储在文件4中。-Huffman encoder/decoder problem description: given a message to Huffman encoding, a given Huffman code decoding. Request message is stored in one file, the encoded results are stored in the document 2, a given code is stored in the document 3, the result of decoding is stored in the document 4.
Date : 2026-01-01 Size : 3kb User : 王亮

DL : 0
利用哈夫曼编码构造的完整的编/译码系统,包括初始化、编码、译码、显示等,并将其输出在文件中。-The use of Huffman encoding the complete structure of the encoder/decoder system, including the initialization, encoding, decoding, display and output in the document.
Date : 2026-01-01 Size : 220kb User : LCC

哈夫曼编/译码器:利用哈夫曼编码进行通信可以大大提高信道利用率,缩短信息传输入时间, 降低成本,但是,这要求发送端通过一个编码系统对待传输数据先进行编码,在 接收端将传来的数据进行译码。对于双工信道(可双向传输的信道),每端都需 要一个完整的编/译码系统。-Huffman encoder/decoder: the use of Huffman coding can greatly improve the communication channel utilization, information Chuan shorter input time, reduce costs, however, this requires the sending end through a coding system to treat the first encoded data, in the receiving end to decode the data came from. For duplex channel (which can be two-way transmission channel), each client requires a full encoder/decoder system.
Date : 2026-01-01 Size : 66kb User : 阿洒

利用哈夫曼编码进行通信可以大大提高信道利用率,缩短信息传输时间,降低传输成本。这要求在发送端通过一个编码系统对待传输预先编码,在接收端将传来的数据进行译码。对于双工通道(即可以双向传输信息的信道),每端都需要一个完整的编/译码系统。试为这样的信息收发站写一个哈夫曼码的编/译码系统。(功能非常完全)-The use of Huffman coding can greatly improve the communication channel utilization, reduce the information transmission time, lower transmission costs. This requires the sending end through a coding system to treat pre-transmission encoding, the receiver will decode the data came from. For duplex channels (that is two-way transmission of information channel), each client requires a full encoder/decoder system. Test for such information transceiver station to write a Huffman code encoder/decoder system. (Very incomplete)
Date : 2026-01-01 Size : 465kb User : zhengks

(1) 初始化。从终端读入字符集大小n,以及n个字符和n个权值,建立哈夫曼树,并将它存于文件hfmTree.txt中。 (2) 编码。利用已建好的哈夫曼树,对文件ToBeTra.txt中的正文进行编码,然后将结果存入文件CodeFil.txt中。 (3) 译码。利用已建好的哈夫曼树将文件CodeFile.txt中的代码进行译码,结果存入文件Textfile.txt中。 -Huffman encoder/decoder
Date : 2026-01-01 Size : 17kb User : liukaibo

哈弗曼编码器,含有完整源码。文件的输入与输出。-Havermann encoder, includes full source code. File input and output.
Date : 2026-01-01 Size : 957kb User : 徐永祥

哈夫曼编/译器。有点问题,得不到正确的结果,望修改-Huffman Encoder/translation device . A little problem, not the correct results, look changes
Date : 2026-01-01 Size : 2kb User : 赞恩

Implementation of a turbo encoder/decoder cla-Implementation of a turbo encoder/decoder class
Date : 2026-01-01 Size : 5kb User : Jawahar

Definition of a turbo encoder/decoder
Date : 2026-01-01 Size : 3kb User : Jawahar

利用二叉树结构实现赫夫曼编/解码器。 基本要求: 1、初始化:能够对输入的任意长度的字符串s进行统计,统计每个字符的频度,并建立赫夫曼树 2、建立编码表:利用已经建好的赫夫曼树进行编码,并将每个字符的编码输出。 3、编码:根据编码表对输入的字符串进行编码,并将编码后的字符串输出。 4、译码:利用已经建好的赫夫曼树对编码后的字符串进行译码,并输出译码结果。 5、打印:以直观的方式打印赫夫曼树(选作) 6、计算输入的字符串编码前和编码后的长度,并进行分析,讨论赫夫曼编码的压缩效果。 -Using binary tree structure to achieve Huffman encoder/decoder. Basic requirements: 1 Initialization: the ability to input a string of arbitrary length s statistical, statistical frequency of each character, and the establishment of Huffman tree 2, the coding table: the use of the Huffman tree has been built to encode, and encoding each character output. 3, code: According to the code table to encode the input string and output the encoded string. 4, decoding: use of the Huffman tree has been built on the encoded string decoding, and outputs decoding result. 5, print: the intuitive way to print Huffman tree (chosen as) 6 to calculate the input code string length before and after coding, and analysis, discussion of Huffman coding compression.
Date : 2026-01-01 Size : 1.13mb User : 莫凡

哈弗曼解码的算法,是用VC++实现的,是学习算法的好资料。-Huffman encoder of MP3 music.
Date : 2026-01-01 Size : 3kb User : 余亮

利用二叉树结构实现哈弗曼编码器和解码器。根据输入的字符串中每个字符出此案的次数统计频度。-Using binary tree structure to achieve Hafu Man encoder and decoder. According to the input string the number of times each character a statistical frequency of the case.
Date : 2026-01-01 Size : 7kb User : 33

DL : 0
huffman 哈夫曼编/译码器 利用哈夫曼编码进行通信可以大大提高1言道利用率,缩短信息传速时间,降低传输成本。但是.这要求在发送端通过一个编码系统对待传数据预先编码.在接收端将传来的数据进行译码(复原)。对于双工信道(即可以双向传输俏息的信道),每端都需要一个完整的编/译码系统。试为这样的信息收发站写一个哈夫曼码的编/译码系统。 -huffman Huffman encoder/decoder to communicate using Huffman coding can greatly improve a speech channel utilization, reduce the speed of information transmission time and reduce transport costs. However. This requires the sender to pass through a coding system to treat the data pre-encoding. At the receiving end to decode data from the (recovery). For the duplex channel (ie, interest rates can be pretty two-way transmission channel), each side needs a complete encoding/decoding system. Test for such messaging station to write a Huffman encoding/decoding system.
Date : 2026-01-01 Size : 2kb User : 尘封

DL : 0
LDPC code generator and encoder and decoder -LDPC code generator and encoder and decoder
Date : 2026-01-01 Size : 16kb User : linzhujun

数据结构实验,C语言写的哈夫曼树编码器和译码器-Experimental data structures, C language to write the Huffman tree encoder and decoder
Date : 2026-01-01 Size : 240kb User : 德曼

程序设计 由C++实现的 哈夫曼编码器 内含代码-Huffman encoder containing code Programming in C++
Date : 2026-01-01 Size : 485kb User : 崔倩茹

DL : 0
哈夫曼编码。关于实现哈弗曼编码的一个实验报告。-Havermann Encoder
Date : 2026-01-01 Size : 30kb User : xinling
« 12 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.