虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

encoding-decoding

  • 利用哈夫曼编码进行信息通信可以大大提高信道利用率

    利用哈夫曼编码进行信息通信可以大大提高信道利用率,缩短信息传输时间,降低传输成本。但是,这要求在发送端通过一个编码系统对待传数据预先编码,在接收端将传来的数据进行译码(复原)。对于双工信道(即可以双向传输信息的信道),每端都需要一个完整的编/译码系统。试为这样的信息收发站写一个哈夫曼编/译码系统。 [基本要求]: (1)I:初始化(Initialization)。从终端输入一个长度不超过80的字符串(全部为大写字母且无空格)。统计字符串的长度n、以及不同字符的个数和每种字符的权值,然后建立哈夫曼树。 (2)E:编码(Encoding)。利用已建好的哈夫曼树对正文字符串进行编码,并输出。 (3)D:译码(Decoding)。利用已建好的哈夫曼树与已经完成的编码进行译码,并输出。

    标签: 编码 信息通信 信道 利用率

    上传时间: 2016-03-15

    上传用户:sclyutian

  • 赫夫曼编译码器: 用哈夫曼编码进行通信可以大大提高信道利用率

    赫夫曼编译码器: 用哈夫曼编码进行通信可以大大提高信道利用率,缩短信息传输时间,降低传输成本。但是,这要求在发送端通过一个编码系统对待传数据预先编码,在接收端将传来的数据进行译码(复原)。对于双工信道(即可以双向传输信息的信道),每端都需要一个完整的编/译码系统。试为这样的信息收发站写一个哈夫曼码的编/译码系统。 [基本要求]一个完整的系统应具有以下功能: (1)I:初始化(Initialization)。从终端读入字符集大小n,以及n个字符和n个权值,建立哈夫曼树,并将它存于文件hfmTree中。 (2)E:编码(Encoding)。利用已建好的哈夫曼树(如不在内存,则从文件hfmTree中读入),对文件ToBeTran中的正文进行编码,然后将结果存入文件CodeFile中。 (3)D:译码(Decoding)。利用已建好的哈夫曼树将文件CodeFile中的代码进行译码,结果存入文件TextFile中。 (4)P:印代码文件(Print)。将文件CodeFile以紧凑格式显示在终端上,每行50个代码。同时将此字符形式的编码文件写入文件CodePrin中。 (5)T:印哈夫曼树(Tree printing)。将已在内存中的哈夫曼树以直观的方式(树或凹入表形式)显示出,同时将此字符形式的哈夫曼树写入文件TreePrint中。

    标签: 赫夫曼编译码 编码 信道 利用率

    上传时间: 2016-04-17

    上传用户:zaizaibang

  • The files include LDPC that using different approach to finish its decoding.And the approach is par

    The files include LDPC that using different approach to finish its decoding.And the approach is parallel.

    标签: approach different decoding include

    上传时间: 2016-05-06

    上传用户:zmy123

  • STUDIO ENCODING PARAMETERS OF DIGITAL TELEVISION FOR STANDARD 4:3 AND WIDE-SCREEN 16:9 ASPECT RATIO

    STUDIO ENCODING PARAMETERS OF DIGITAL TELEVISION FOR STANDARD 4:3 AND WIDE-SCREEN 16:9 ASPECT RATIOS

    标签: WIDE-SCREEN PARAMETERS TELEVISION ENCODING

    上传时间: 2013-12-08

    上传用户:凌云御清风

  • C++实现的哈弗曼编码

    C++实现的哈弗曼编码,并有流程图(1)I:初始化(Initialization)。从指定的英文文件中Sourcefile.txt读取数据,根据文件内容统计的字符的频度,建立哈夫曼树。 (2)E:编码(Encoding)。利用已经建好的哈夫曼树进行编码,并将每个字符的编码写入文件HuffCode.txt中保存。 (3)C:压缩(Compress)。根据HuffCode.txt中编码对文件Sourcefile.txt进行重新编码,并将重新编码后的内容写入文件CodeFile.txt中。 (4)D:译码(Decoding)。利用已经建好的哈夫曼树将文件CodeFile.txt中的代码进行译码,结果存入文件TextFile中。 (5)P:打印代码文件(Print)。将文件CodeFile.txt的内容显示在终端上,每行50个代码。 (6)T:显示哈夫曼树(Treeprinting)。将已经在内存中的哈夫曼树以直观的方式(树或凹入表形式)显示在终端上。

    标签: 编码

    上传时间: 2013-12-24

    上传用户:gxrui1991

  • 输入一段英文字符

    输入一段英文字符,试为该文中的每个字符编制相应的哈夫曼码。 (1)I:初始化(Initialization)。对输入的一段英文中的每个字符统计其权值,建立哈夫曼树; (2)E:编码(Encoding)。利用已建好的哈夫曼树,对每个字符进行编码。 (3)D:译码(Decoding)。利用已建好的每个编码,对输入的一个由0、1组成的序列进行译码; (4)P:印代码文件(Print)。将每个字符编的哈夫曼码和译码结果显示在终端上。

    标签: 输入 英文 字符

    上传时间: 2013-12-16

    上传用户:lizhen9880

  • The package contains a Reed-Solomon coding and decoding program, derived partly from Phil Karn/Rob

    The package contains a Reed-Solomon coding and decoding program, derived partly from Phil Karn/Robert Morelos-Zaragoza "new_rs_erasures.c". In particular the Berlekamp-Massey algorithm has not been modified. New features compared to "new_rs_erasures.c" are: - fully parameterized: code parameters (n,k,m) can be selected via command line options. - decoding optional by Euclid or Belekamp-Massey algorithm - efficient support of shortened codes - extensive verbose levels for hardware verification

    标签: Reed-Solomon contains decoding package

    上传时间: 2013-12-11

    上传用户:shinesyh

  • LDPC Decoder for rate=1/2 Min-Sum, Sum-Product, Scaling Min-Sum Layered Decoding for Matlab Code

    LDPC Decoder for rate=1/2 Min-Sum, Sum-Product, Scaling Min-Sum Layered Decoding for Matlab Code

    标签: Min-Sum Sum-Product for Decoding

    上传时间: 2013-12-15

    上传用户:jennyzai

  • mp3 decoder,introduce the decoding procedure detailedly,and you can run it directly

    mp3 decoder,introduce the decoding procedure detailedly,and you can run it directly

    标签: detailedly introduce procedure decoding

    上传时间: 2016-07-09

    上传用户:ddddddos

  • EZW Embedded Zero-tree Wavelets Encoding,video codecs from the EZW family which use a 3D version of

    EZW Embedded Zero-tree Wavelets Encoding,video codecs from the EZW family which use a 3D version of EZW or SPIHT algorithms showed better performance than the MPEG-2 compression algorithm. These algorithms have many advantages inherent for wavelet based schemes and EZW-like coders. Their most important advantages are good compression performance and scalability.

    标签: EZW Zero-tree Embedded Wavelets

    上传时间: 2013-12-20

    上传用户:wsf950131