README.TXT
Upload User: szqxhk
Upload Date: 2010-02-15
Package Size: 54k
Code Size: 2k
Development Platform:

Visual C++

  1.     这里是LDS(lossless data-compression sources)的KIT.我发现很多人都想这么一份压缩软件的源代码,但是他们很难找到,特别是一些比较好的.
  2.     所有的源代码已经用Borland C++编译成功.每个目录中都包含一个makefile或者是make.bat用以创建可执行的文件.其它的编译器或操作系统需要改动一些地方.
  3.     所有的源代码包括它们的原始文档.
  4.                     
  5. =========
  6. AR002
  7.    Contains a complete archiver by Haruhiko Okumura. The archiver uses
  8.    an LZ engine whose output is compressed with static Huffman. The
  9.    file is chopped into pieces which all get their own independent
  10.    set of Huffman tree's. ARJ 2.41, ZIP 2.0 and PKZIP 2.04g use
  11.    essentially the same method. ZOO and LHA even use excactly the
  12.    same method.
  13. LZW
  14.    The famous Lempel Ziv Welch compressor. This version by Kent Williams.
  15. COMP
  16.    Arithmetic compression written by Mark R. Nelson. Published in
  17.    Dr Dobbs february 1991. Contains a basic arithmetic compressor
  18.    and a higher order arithmetic compressor.
  19. ASH
  20.    A "brother" of the higher order compressor from Nelson written by
  21.    Charles Ashford. Ingenious program which makes use of the very limited
  22.    memory of the PC and still can process large files. One price to pay,
  23.    it is VERY slow. The tigthest compressor in the Dr Dobbs compression
  24.    contest.
  25. FIN
  26.    Finish submission to the Dr Dobbs contest written by Jussi Puttonen,
  27.    Timo Raita and Jukka Teuhola. The fastest DOS compressor I know of.
  28.    The origional is in 100% assembly. I derived a C version (which I
  29.    published before in PC Newsflash).
  30. HUF
  31.    Static Huffman compression/decompression by William Demas.
  32. LZ
  33.    LZSS by Haruhiko Okumura. LZARI by Haruhiko Okumura, the first
  34.    compressor recompressing the output of the LZ engine. Haruyasu
  35.    Yoshizaki (the author of LHarc and LHA) replaced the ARI compressor
  36.    by dynamic Huffman, LZHUF.
  37. SPLAY
  38.    Splay tree compression written by Kim Kokkonen. Splay tree compression
  39.    is a "nephew" of Huffman compression. It is faster but achieves less
  40.    compression in most cases.
  41. LZRW1
  42.    LZRW1 compressor by Ross Williams. A very fast LZ compressor. Not as
  43.    fast as FIN but it has a better compression ratio. I appended a small
  44.    part to show it really works. This implementation of LZRW1 uses memory
  45.    as source and destination, not disk.