home *** CD-ROM | disk | FTP | other *** search
/ Media Share 13 / mediashare_13.zip / mediashare_13 / ZIPPED / PROGRAM / APR94_1.ZIP / ALLEY.ZIP / README.TXT < prev    next >
Text File  |  1994-01-05  |  1KB  |  34 lines

  1.  
  2. Algorithm Alley - Dr Dobb's Journal - April 1994
  3. "Searching for a Search Engine"
  4. (c) 1994 by Tom Swan. All rights reserved.
  5.  
  6. Files ending in .PAS are for Pascal or Turbo Pascal. Files ending in 
  7. .C are for any ANSI C compiler (I use Borland C++). Files ending in
  8. .BAS are for MS-DOS BASIC. Files ending in .TXT contain pseudo code
  9. algorithms. Here's an inventory of the files included in this month's
  10. upload:
  11.  
  12.     common.pas      Miscellaneous functions used by IDENT
  13.     ident.pas       Main IDENT program
  14.     search.pas      Trie search engine
  15.     winword.mac     Sample Word for Windows macro
  16.  
  17. Compile the program with Borland Pascal 7. From DOS, enter:
  18.  
  19.     bpc common
  20.     bpc search
  21.     bpc ident
  22.  
  23. Run IDENT to convert keywords in Pascal listings to lowercase, and
  24. optionally to delimit keywords with <* and *>. A word processor can
  25. then translate the marked key words to bold face.
  26.  
  27. WARNING: Keep backup copies of all files processed by IDENT. After
  28. processing a listing file, IT WILL NO LONGER COMPILE.
  29.  
  30. For more information about the files, see my column "Algorithm Alley"
  31. appearing regularly in Dr. Dobb's Journal. Enjoy!
  32.  
  33. Tom Swan
  34.