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 >
Wrap
Text File
|
1994-01-05
|
1KB
|
34 lines
Algorithm Alley - Dr Dobb's Journal - April 1994
"Searching for a Search Engine"
(c) 1994 by Tom Swan. All rights reserved.
Files ending in .PAS are for Pascal or Turbo Pascal. Files ending in
.C are for any ANSI C compiler (I use Borland C++). Files ending in
.BAS are for MS-DOS BASIC. Files ending in .TXT contain pseudo code
algorithms. Here's an inventory of the files included in this month's
upload:
common.pas Miscellaneous functions used by IDENT
ident.pas Main IDENT program
search.pas Trie search engine
winword.mac Sample Word for Windows macro
Compile the program with Borland Pascal 7. From DOS, enter:
bpc common
bpc search
bpc ident
Run IDENT to convert keywords in Pascal listings to lowercase, and
optionally to delimit keywords with <* and *>. A word processor can
then translate the marked key words to bold face.
WARNING: Keep backup copies of all files processed by IDENT. After
processing a listing file, IT WILL NO LONGER COMPILE.
For more information about the files, see my column "Algorithm Alley"
appearing regularly in Dr. Dobb's Journal. Enjoy!
Tom Swan