搜索资源列表
shujujiegou
- 已知某系统设计哈夫曼编码,利用哈夫曼编码进行通信。为信息收发站编写一个哈夫曼码的编/译码系统。-A system design known Huffman encoding, the use of Huffman coding to communicate. Information hubs for the preparation of a Huffman code to encode/decode system.
haffman
- 哈夫曼编码 问题描述:利用哈夫曼编码,实现压缩和解压缩 基本要求: 对于给定的一组字符,可以根据其权值进行哈夫曼编码,并能输出对应的哈夫曼树和哈夫曼编码;实现哈夫曼解码 提高要求: (1) 能够分析文件,统计文件中出现的字符,再对文件进行编码,实现文件的压缩和解压缩 (2) 能够对于文件的压缩比例进行统计 (3) 能够打印文件 这是数据结构的课程设计-Huffman Coding Problem Descr iption: Using the Huffman co
MatlabHW
- This will take a full text and Huffman encode it and decode it. It is well documented as we-This will take a full text and Huffman encode it and decode it. It is well documented as well
huffmanencode
- 此代码是实现霍夫曼编码的程序,在visual C++的软件环境下运行。其中的注释是自己的想法,可以有助于理解。-huffman encode
JPEG_BaseLine_Encoder
- The JPEG compression scheme is divided into the following stages: 1. Transform the image into an optimal color space. 2. Adjust Aspect Ratio 16:9 3. Digitization Scheme 4:2:0. 4. Apply a Discrete Cosine Transform (DCT) to blocks of pixels
HFM.c
- 本系统可以对任何字符(最多我设成26个字符,当然可以改成更多)创建哈夫曼编码,并生成哈夫曼编码表,然后可以对输入的字符串(最多50个字符,这个数目也可以改)进行编码,也可以对输入的0,1串(字符数同上面)进行译码。-The system can be any character (up to 26 characters I set course can be changed more) create Huffman coding, Huffman coding and generating ta
Huffman
- 用赫夫曼树进行编码和解码的相关操作,支持字符串的加密和解密-the procedure was wrote for huffman code ,which can be uesd to encode sting
huffman
- 霍夫曼编解码,采用构造霍夫曼树进行编码;构造好霍夫曼树后解码的过程就比较简单了;只需通过霍夫曼树找到相应的叶子节点即可解码-Hoffman codec used to encode structural Huffman tree good Huffman tree structure after decoding process is relatively simple just find the leaf node can be decoded by the Huffman tree
Huffman
- The file Huffman.java is used to encode and decode image and text.
code
- David A. Huffman published his paper A Method for the Construction of Minimum-Redundancy Codes , and hence printed his name in the history of computer science. As a professor who gives the final exam problem on Huffman codes, I am encountering a big
代码1-9
- 1) I:初始化(Initialization)。从终端读入字符集大小n,以及n个字符和n个权值,建立哈夫曼树,并将它存于文件hfmTree中。 2) E:编码(Encoding)。利用已建好的哈夫曼树(如不在内存,则从文件hfmTree中读入),对文件ToBeTran中的正文进行编码,然后将结果存入文件CodeFile中。 3) D:译码(Decoding)。利用已建好的哈夫曼树将文件CodeFile中的代码进行译码,结果存入文件TextFile中。(1) I: initializatio
