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

书籍源码

开发平台:

Visual C++

  1. /*
  2.  * This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
  3.  * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
  4.  * copyright and warranty notices given in that book:
  5.  * 
  6.  * "Copyright (c) 2005 by Objectwrite, Inc., Jose Lajoie, and Barbara E. Moo."
  7.  * 
  8.  * 
  9.  * "The authors and publisher have taken care in the preparation of this book,
  10.  * but make no expressed or implied warranty of any kind and assume no
  11.  * responsibility for errors or omissions. No liability is assumed for
  12.  * incidental or consequential damages in connection with or arising out of the
  13.  * use of the information or programs contained herein."
  14.  * 
  15.  * Permission is granted for this code to be used for educational purposes in
  16.  * association with the book, given proper citation if and when posted or
  17.  * reproduced.Any commercial use of this code requires the explicit written
  18.  * permission of the publisher, Addison-Wesley Professional, a division of
  19.  * Pearson Education, Inc. Send your request for permission, stating clearly
  20.  * what code you would like to use, and in what specific way, to the following
  21.  * address: 
  22.  * 
  23.  *  Pearson Education, Inc.
  24.  *  Rights and Contracts Department
  25.  *  75 Arlington Street, Suite 300
  26.  *  Boston, MA 02216
  27.  *  Fax: (617) 848-7047
  28. */ 
  29. #include <map>
  30. #include <vector>
  31. #include <iostream>
  32. #include <fstream>
  33. #include <string>
  34. #include <stdexcept>
  35. #include <sstream>
  36. using std::map; using std::string; using std::vector;
  37. using std::ifstream; using std::cout; using std::endl;
  38. using std::getline; using std::make_pair;
  39. using std::runtime_error; using std::istringstream;
  40. ifstream& open_file(ifstream&, const string&);
  41. int main(int argc, char **argv)
  42. {
  43.     // map to hold the word transformation pairs: 
  44.     // key is the word to look for in the input; value is word to use in the output
  45.     map<string, string> trans_map;
  46.     string key, value;
  47.     if (argc != 3)
  48.         throw runtime_error("wrong number of arguments");
  49.     // open transformation file and check that open succeeded
  50.     ifstream map_file;
  51.     if (!open_file(map_file, argv[1]))
  52.         throw runtime_error("no transformation file");
  53.     // read the transformation map and build the map 
  54.     while (map_file >> key >> value) 
  55.         trans_map.insert(make_pair(key, value));
  56. {
  57.     // ok: let's display it
  58.     map<string, string>::iterator map_it = trans_map.begin();
  59.     //cout << "Here is our transformation map: nn";
  60.     while (map_it != trans_map.end()) {
  61.         cout << "key: "   << map_it->first; 
  62.         if (map_it->first.size() == 1)
  63.             cout << "       ";
  64.         if (map_it->first.size() == 3)
  65.             cout << "     ";
  66.         else if (map_it->first.size() == 4)
  67.             cout << "    ";
  68.         else if (map_it->first.size() == 5)
  69.             cout << "   ";
  70.         cout << "value: " << map_it->second << endl;
  71.         ++map_it;
  72.     }
  73.     cout << "nn";
  74.     {  // this block just produces the vector so that we can print it
  75.        // for the book
  76.     cout << "Here is our original string input:nn";
  77.     // read some text to transform
  78.     ifstream input;
  79.     if (!open_file(input, argv[2]))
  80.         throw runtime_error("no input file");
  81.     string word;
  82.     while (getline(input, word)) 
  83.          cout << word << endl;
  84.     cout << "nnn";
  85.     input.close(); input.clear();
  86.     }
  87. }
  88.     // ok, now we're ready to do the transformations
  89.     // open the input file and check that the open succeeded
  90.     ifstream input;
  91.     if (!open_file(input, argv[2]))
  92.         throw runtime_error("no input file");
  93.     string line;   // hold each line from the input
  94.     // read the text to transform it a line at a time
  95.     while (getline(input, line)) {
  96.         istringstream stream(line);  // read the line a word at a time
  97.         string word;
  98.         bool firstword = true;  // controls whether a space is printed 
  99.         while (stream >> word) {
  100.            // ok: the actual mapwork, this part is the heart of the program
  101.            map<string, string>::const_iterator map_it =
  102.                                trans_map.find(word);
  103.            // if this word is in the transformation map
  104.            if (map_it != trans_map.end()) 
  105.                // replace it by the transformation value in the map
  106.                word = map_it->second;  
  107.            if (firstword)
  108.                firstword = false;
  109.            else
  110.                cout << " ";  // print space between words
  111.            cout << word;
  112.         }
  113.         cout << endl;        // done with this line of input
  114.     }
  115.     return 0;
  116. }