搜索资源列表
HuffmanCode_java
- huffman字符编码的java实现,可将英文文本压缩为huffman编码,也可将压缩后的huffman编码解压缩为英文文本-Huffman coding characters java realized, English text can be compressed to Huffman coding, can also be compressed Huffman coding compression solutions for the English version
DataCompress
- 用NETBEAN实现的哈夫曼数据压缩,可压缩任意英文文本文件,及进行解压,显示压缩比等处理信息-Using NetBeans realize the Huffman data compression, compressible arbitrary English text files, and extract, indicating the compression ratio and other treatment information
HuffmanTree
- 根据huffman树的一个压缩程序,可以压缩和解压单个文件,压缩率80 左右-Huffman tree in accordance with a compression program, you can compress and decompress a single file, the compression rate of 80
Huffman
- Huffman Algorithm: 用于文字压缩,通信等领域,是算法学习的必学章节-Huffman Algorithm: Being used in compressed area
huffman
- java 实现的 huffman 编码 ,可用于图像压缩-huffman encode
huffman
- 该压缩包是描述数据结构与算法中的哈弗曼树的Java源程序,可以直接导入Eclipse即可查看效果-The compressed packet is to describe data structures and algorithms in the Java source tree哈弗曼can be directly into Eclipse to see the effect of
Huffman
- 自己用Huffman实现的一个压缩程序,自定义了一种压缩格式,总得来说功能还是不错的。-Their implementation with a Huffman compression procedure, custom, a compression format, in general, functionality is good.
Huffmanjava
- 利用huffman算法实现压缩文件算法,-huffman algorithm compressed file
hufior_beta
- 哈夫曼压缩器,是用Java来实现的,挺好用的-the implements of huffman for compreess...
project2
- 使用huffman tree实现的压缩工具,可以对多级文件夹进行压缩-Achieved using the huffman tree compression tool that can compress the multi-level folder
DS_project2
- 数据结构的project2,哈夫曼压缩算法,实现文件的压缩和解压缩,有操作界面和压缩进度条-Data structure of the project2, Huffman compression algorithms, file compression and decompression, a progress bar interface and compression
huffman
- 用霍夫曼树进行文件的压缩和解压缩。包括计算字符频率,构建霍夫曼树,进行文件压缩,文件解压缩-Compress file or decompress file with huffman tree. The code include frequency counting, huffman tree building, textzip, decompression.
yasuo
- 利用霍夫曼树实现的压缩txt文件的程序,将压缩结果存到txt文件中-Using Huffman tree txt file compression program, the compressed result is stored in the txt file
Huffman
- 利用Huffman完成对文件的压缩,压缩率在30 左右,压缩包中包括.java和.class文件,以及输入文件和详细的readme说明-Huffman completed file compression, the compression ratio is about 30 compression package including java and. Class files, as well as the input file and detailed readme instructions
huffmandemo
- 这是一个C++程序,实现Huffman编码,来压缩文件。很强大,编码人员更强大,彻底佩服。-This is a C++ program, to achieve Huffman coding to compress the file. Very powerful, more powerful, coders thoroughly admire.
huffmancoding
- huffman编码文件压缩器,可压缩多种文件-huffman coding file compressor, compressible multiple file
hfmjava
- 哈弗曼算法实现图片压缩,功能可以实现,且界面化,对于bmp图压缩效果较好-Huffman compression algorithm pictures
5 哈夫曼编码和解码
- 哈夫曼编码是不等长编码。利用哈夫曼编码能实现了数据的压缩,在进行通信时,可以大大提高信道利用率,缩短信息传输的时间。本实习要求对发送端待发送的信息进行哈夫曼编码,在接收端进行解码,还原为原来的信息。测试数据:自己找一段不小于2000字符的英文文章,保存为文件。(1) 所有信息输入与输出要以图形化的可视界面,如:用对话框选择打开的文件、字符的出现频率的统计信息能以文件的方式保存,能以表格的形式输出到显示器等。(2) 编码后的信息要以文件的方式保存。能比较编码前和解码后的两个文件是否一致。 (3)