README.TXT
上传用户:qdkongtiao
上传日期:2022-06-29
资源大小:356k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. The programs in this directory that read the standard input 
  2. place no requirements on their input data -- they read 
  3. whitespace separated text and count occurences or
  4. remove specified words etc.  Any file, for example this README, 
  5. could be supplied as input to these programs:
  6.      word_count:   counts occurrences of each word in the input
  7.      erasemap:     like word_count builds a map of the words in the
  8.                    input and then erases the word "the"
  9. Other programs require one or more files to be specified
  10. as an argument to main:
  11.      Program            File
  12.     setexclusion       remove_words
  13.     word_transform     trans-map, trans-text
  14.     query              Alice_story
  15.     3edquery           Alice_story
  16. setexclusion: 
  17.    reads the standard input and also requires takes a file 
  18.    name as an argument to the program.  
  19.    The specified file contains a list of words to ignore 
  20.    when counting words read from the standard input.
  21.    The file data/exclude_words is a sample file of words
  22.    to ignore.
  23. word_transform:
  24.    takes two files as arguments to main.  
  25.    The first specifies a map from input word to output word
  26.    The second is the text to transform.
  27. query and 3rdquery:
  28.    These programs take an argument that specifies the file to read
  29.    and then read the standard input iterating with the user for words 
  30.    to find in the file.  
  31.    The file 'data/Alice_story' is the simple story used for queries
  32.    presented in the book
  33. multimap: 
  34.    Is self-contained. It writes to the standard input but do no input.