home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / archives / 3293 < prev    next >
Encoding:
Internet Message Format  |  1992-09-08  |  4.2 KB

  1. Path: sparky!uunet!haven.umd.edu!darwin.sura.net!spool.mu.edu!agate!agate!usenet
  2. From: dawson@cs.cornell.edu (Dawson Dean)
  3. Newsgroups: comp.archives
  4. Subject: [comp.sys.mac.programmer] Best text compression
  5. Followup-To: comp.sys.mac.programmer
  6. Date: 6 Sep 1992 08:25:12 GMT
  7. Organization: Cornell Univ. CS Dept, Ithaca NY 14853
  8. Lines: 81
  9. Approved: adam@soda.berkeley.edu
  10. Distribution: world
  11. Message-ID: <18cf98INNmpl@agate.berkeley.edu>
  12. References: <1992Sep4.150216.26146@cs.cornell.edu>
  13. NNTP-Posting-Host: soda.berkeley.edu
  14. X-Original-Newsgroups: comp.sys.mac.programmer
  15. X-Original-Date: Fri, 4 Sep 1992 15:02:16 GMT
  16.  
  17. Archive-name: auto/comp.sys.mac.programmer/Best-text-compression
  18.  
  19.  
  20. I sent a message to the original poster last night, but it must
  21. have bounced cuz I havent seen it on the net. Then, I see
  22. everyone saying how swell Huffman is and I've got to put in
  23. my own 2 cents. Its been my experience that a good lzw implementation
  24. blows away Huffman and the best public domain lzw I know of is 
  25. built by Ross Williams, and is called lzrw. There are 5 versions
  26. that have different speed/compression tradeoffs, but all are great.
  27.  
  28. You can ftp these from sirius.ucs.adelaide.edu.au or check archie
  29. for other archives. Plus, check out comp.compression and
  30. comp.compression.research, for the latest scoop from many people
  31. (including Ross Williams) who know lots more about this stuff
  32. than me.
  33.  
  34. Here is the readMe from the lzrw release....
  35. ----------------
  36. DATA COMPRESSION DIRECTORY
  37. ==========================
  38. Date   : 04-Apr-1992.
  39. Author : Ross Williams (ross@spam.ua.oz.au)
  40.  
  41. This file gives an overview of the data compression directory of the
  42. anonymous ftp archive located at the University of Adelaide, South
  43. Australia. The exact location of the directory is:
  44.  
  45.    Machine   : sirius.itd.adelaide.edu.au    [IP=129.127.40.3]
  46.    Directory : pub/compression
  47.  
  48. The directory mostly contains public domain data compression
  49. algorithms developed by Ross Williams during early 1991. It also
  50. contains one or two other items of interest.
  51.  
  52. The files in this directory may be compressed. Files that are
  53. compressed will have names terminating with ".Z" and will have to be
  54. uncompressed before use (using the Unix "uncompress" command). I
  55. wouldn't trust my files to a data compression algorithm :-), but the
  56. system programmer who put the files there for me (I do not have direct
  57. control over this archive) seems to think that it is a good idea.
  58.  
  59. Ross Williams
  60. 21-Aug-1991
  61.  
  62. 0readme         - This descriptive file.
  63. dc_stan_just    - Justification of dc_stan_spec.
  64. dc_stan_spec    - Proposal for data compression interface standard.
  65. dc_stan_stream  - Revised proposed standard.
  66. dcc91_report    - Report on 1991 Data Compression Conference.
  67. fast_copy.68000 - Fast block move routine for 68000 microprocessor.
  68. lzrw1-a.68000   - LZRW1-A algorithm implemented in 68000 assembler.
  69. lzrw1-a.c       - LZRW1-A algorithm implemented in C
  70. lzrw1-a.txt     - Release notes for LZRW1-A algorithm.
  71. lzrw1.68000     - LZRW1 algorithm implemented in 68000 assembler.
  72. lzrw1.c         - LZRW1 algorithm implemented in C.
  73. lzrw1.tex       - DCC91 conference paper describing LZRW1 algorithm.
  74. lzrw2.c         - LZRW2 algorithm implemented in C.
  75. lzrw2.txt       - Release notes for LZRW2 algorithm.
  76. lzrw3-a.c       - LZRW3-A algorithm implemented in C.
  77. lzrw3-a.txt     - Release notes for LZRW3-A algorithm.
  78. lzrw3.c         - LZRW3 algorithm implemented in C.
  79. lzrw3.txt       - Release notes for LZRW3 algorithm.
  80. lzrw4.txt       - Description of LZRW4 algorithm (not yet implemented).
  81. lzrw45_covering - Release notes for LZRW4 and LZRW5 descriptions.
  82. lzrw5.txt       - Description of LZRW5 algorithm (not yet implemented).
  83. lzrw_headers.h  - Header files (.h files) for C code.
  84. puzzlebox_provpatent - Provisional patent for puzzle box.
  85. rw_info         - Information about Ross Williams and his activities.
  86.  
  87. WARNING: A patent has recently arisen that may cover one or more of
  88. these algorithms. Please refer to the file rw_info for more
  89. information.
  90.  
  91. --<End of 0readme file for the compression directory>
  92. -- 
  93. ******************************************************************
  94. Dawson Dean                       Internet: dawson@cs.cornell.edu
  95. Dept. of Computer Science         Office:   (607) 255-1179
  96. Cornell University
  97.  
  98.