搜索资源列表
Huffman
- 一组指令进行霍夫曼编码,并输出最后的编码结果以及对指令码的长度进行评价。与扩展操作码和等长码进行比较-A set of instructions to carry out Huffman code, and output the final results of the encoding length of the scr ipt evaluation. With the expansion of the operation code and compare the code length
Huffman
- huffman code using java
Huffmanjava
- 利用JAVA程序,接受输入的字符串,输出对应的哈弗曼编码 -Accepting the String imported from keyboard ,then export the huffman code of a correspondence.
huffmancodeimplementation
- Huffman s compression algorithm implemented in Javascr ipt. 2009-06-02 implemented Huffman s compression algorithm in Javascr ipt. Here is a wiki link describing what Huffman coding is: http://en.wikipedia.org/wiki/Huffman_coding My working e
Eve_-_File20871710152007
- Huffman coding to create code
huffmancode
- 信息论与编码理论中赫夫曼编码的JAVA源码,自己写的,不是多好,但是用起来很方便,仅供参考.-Information theory and coding theory, Huffman coding JAVA source code, their own writing, and is not especially good, but it is easy to use for reference purposes only.
huffman
- huffman algorithm code
HuffmanCode
- huffman code by java language yo will insert your text and you will output resulte-huffman code by java language yo will insert your text and you will output resulte
Huffman
- huffman source code to compress the file
huffman
- 用霍夫曼树进行文件的压缩和解压缩。包括计算字符频率,构建霍夫曼树,进行文件压缩,文件解压缩-Compress file or decompress file with huffman tree. The code include frequency counting, huffman tree building, textzip, decompression.
Huffman
- I have implemented Huffman code in simple manner so that any body can understand it
HuffmanCode
- 一个基于JAVA的huffman编码压缩源码。-Huffman code.
HuffmanTest
- 利用java实现霍夫曼编码及其查找的源码-Java use of the Huffman code and find the source
Huffman
- java实现huffman编码,主要追对字符串,可以输出每层细节和码的权值-java achieve huffman coding, the main chase string, you can output the right values in each detail and code
Huffman-compression-algorithm
- 哈夫曼编码生成步骤,哈夫曼编码算法,哈夫曼编码编程。等-Huffman code generation step, Huffman coding algorithm, Huffman coding programming. Wait
Code
- The code is used for text compression. Here the Huffman text compression method is used. It is create a Huffman Table.It store compression text with table
huffman
- Huffman算法是一种用来构造最优前缀码(Huffman编码)的贪心算法,java实现-Huffman algorithm is a kind of used to construct the optimal prefix code greedy algorithm (Huffman coding), the Java implementation
huffmanproject
- Here is a huffman code for compressing file.
vec
- 支持统计文件词汇,词汇出现频率,以及采用哈夫曼编码对字符串进行编码-Support statistical file vocabulary, word frequency, and adopts Huffman code to encode a string
5 哈夫曼编码和解码
- 哈夫曼编码是不等长编码。利用哈夫曼编码能实现了数据的压缩,在进行通信时,可以大大提高信道利用率,缩短信息传输的时间。本实习要求对发送端待发送的信息进行哈夫曼编码,在接收端进行解码,还原为原来的信息。测试数据:自己找一段不小于2000字符的英文文章,保存为文件。(1) 所有信息输入与输出要以图形化的可视界面,如:用对话框选择打开的文件、字符的出现频率的统计信息能以文件的方式保存,能以表格的形式输出到显示器等。(2) 编码后的信息要以文件的方式保存。能比较编码前和解码后的两个文件是否一致。 (3)