搜索资源列表
hafuman
- 一 . 需求分析: 1) 输入形式和输入值范围: 输入形式是要压缩(或者要解压)的文件路径,输入范围是字符串,而且要是文件的路径。 2) 输出形式: 输出相应的编码压缩文件和解码原文件 3) 程序所能达到的功能: 利用哈夫曼对ASCII文件做不等长编码,达到压缩文件。利用哈夫曼树的遍历,达到解压文件的目的。程序的功能也就是实现压缩和解压ASCII类型文件的目的。 4)测试数据:(包括正确的输入数据及其输出结果和含有错误输入及其输出结果) 测试输
SharpZipLib_0852_BinDoc
- SharpZipLib之前叫做NZipLib,完全由 C# 开发的压缩库,支持Zip, GZip, Tar and BZip2 ,为2007年8月最新0852release版的源文件和文档说明! Changes for v0.85.2 release Minor tweaks for CF, ZipEntryFactory and ZipFile. Fix for zip testing and Zip64 local header patching. FastZip revam
SharpZipLib_0852_SourceSamples
- SharpZipLib之前叫做NZipLib,完全由 C# 开发的压缩库,支持Zip, GZip, Tar and BZip2 ,为2007年8月最新0852release版的代码实例! Changes for v0.85.2 release Minor tweaks for CF, ZipEntryFactory and ZipFile. Fix for zip testing and Zip64 local header patching. FastZip revamped
huffman
- 用哈夫曼编码实现文件压缩和解压缩. 压缩过程的实现:1创建Haffman树 2打开需压缩文件 3将需压缩文件中的每个ascii码对应的haffman编码按bit单位输出 4文件压缩结束
huffman
- 基于哈夫曼技术压缩和解压。 计算机中任意文件的读与存都是从缓存里面读取 0 、 1 代码转化成, 即文件其是就是二进制的。所以可以把每8位转换成相应的ASCII码。从而用哈夫曼编码, 将等长编码转化成非等长编码。-Huffman-based compression and decompression technology. Arbitrary files on your computer and keep reading it to read from the cache 0, 1 code
ASCII
- ASCII转换 指的是ASCII与字符之间的转换-ASCII change
quantification_et_codage
- Codage arithmétique est une méthode pour la compression de données lossless. Normalement, une corde des caractères tels que les mots « bonjour là » est représentée en utilisant un nombre fixe de peu par caractère, comme dans ASCII code. Comme
quant-mod
- Codage arithmétique est une méthode pour la compression de données lossless. Normalement, une corde des caractères tels que les mots « bonjour là » est représentée en utilisant un nombre fixe de peu par caractère, comme dans ASCII code. Comme
bmp_to_ppma
- BMP_TO_PPMA is a C++ program which converts a Microsoft BMP file to an ASCII Portable Pixel Map (PPM) file
high_ff
- H264 decode in VC 9 include sse3 codec 1. install MinGW 2. set executable files path for VC EX. C:\Program Files\MinGW\bin 3. build path name only in ascii code, can not unicode EX. c:\hi_ff264 or d:\hi_ff264 is good 4. Choice register in
arithcode
- Arithmetic coding is a form of entropy encoding used in lossless data compression. Normally, a string of characters such as the words "hello there" is represented using a fixed number of bits per character, as in the ASCII code. When a string is conv
Project-2_HuffmanEncode
- 哈夫曼编码 (1) 建立Huffman Tree,也就是建立codebook,找到所有ascii对应的codeword表示方法。 (2) Huffman Encode,将DaVinciCode.txt 整个文本进行编码,储存成一个压缩档,并且使用bitstream来存入。 程序执行方法 : encoder.exe DavinciCode.txt codebook compressed_file-Huffman coding (1) the establishment of Hu