vocab.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 "algs_preamble.h"
  30. #include <fstream>
  31. using std::ifstream;
  32. #include <cstddef>
  33. using std::size_t;
  34. // comparison function to be used to sort by word length
  35. bool isShorter(const string &s1, const string &s2)
  36. {
  37. return s1.size() < s2.size();
  38. }
  39. // determine whether a given word is greater than length 6
  40. // will reimplement later as a more general version using function objects
  41. bool GT6(const string &s)
  42. {
  43. return s.size() >= 6;
  44. }
  45. inline double
  46. percent(double numerator, double denominator)
  47. {
  48. return 100 * numerator/denominator;
  49. }
  50. // report number of words greater than 6
  51. // later chapter will reimplement to be more general
  52. void report_complexity(vector<string>::iterator beg,
  53.                        vector<string>::iterator end,
  54.                        ostream &output = cout)
  55. {
  56. vector<string>::difference_type cnt = 
  57.                          count_if(beg, end, GT6);
  58. output << "Number of unique words in the input " 
  59.        << end - beg << endl;
  60. output << cnt << " "
  61.        <<  make_plural(cnt, "word", "s")
  62.        << " 6 characters or longer" << endl;
  63. output << "Percentage of words 6 characters or more " 
  64.        << percent(cnt, end - beg) << endl;
  65. }
  66. ifstream &open_file(ifstream&, const string&);
  67. ifstream &prompt_user(ifstream &stream)
  68. {
  69.     // loops until we get a valid stream or the user asks to quit
  70.     while (true) {
  71.         // ask for name of the file to open
  72.         string filename;
  73.         cout << "Please enter file name."
  74.              << "Hit Enter to quit: n";
  75.         getline(cin, filename);  // read the filename
  76.         // terminate the loop on either empty line or eof
  77.         if (!cin || filename == "") {
  78.             // set condition state to indicate failure & eof
  79.             stream.setstate(
  80.                  ifstream::eofbit | ifstream::failbit);
  81.             return stream;
  82.         }
  83.         // use getline in case user enters a filename with spaces
  84.         if (open_file(stream, filename)) return stream;
  85.         // otherwise, stream wasn't valid, prompt user to try again
  86.         cerr << "oops! unable to open file"
  87.              << filename
  88.              << " please try again!" << endl;
  89.     }
  90. }
  91. // calls open_file to ask the user for the next book to process
  92. // builds a vector<book> that contains the contents of each book 
  93. vector<string> get_books()
  94. {
  95. ifstream infile;    // stream bound to the next book file
  96. vector<string> ret; // data structure we'll return to our caller
  97. // prompt_user asks user for next book and binds infile to it
  98. while (prompt_user(infile)) {
  99. // iterator to read the text of the book
  100. istream_iterator<string> in_iter(infile), eos;
  101. // read contents of the book into this book's vector
  102. ret.insert(ret.end(), in_iter, eos);
  103. infile.close();  // close the file when we're done with it
  104. }
  105. return ret;
  106. }
  107. int main()
  108. {
  109. // read the contents of the books to analyze
  110. vector<string> words = get_books();
  111. // sort the input so that we can eliminate duplicates
  112. sort(words.begin(), words.end());
  113. // unique reorders elements and returns iterator to end of unique range
  114. // erase uses that iterator to erase non-unique elements
  115. words.erase(unique(words.begin(), words.end()), 
  116.             words.end());
  117. // sort the words by size, but maintain alphabetic order for words of the same size
  118. stable_sort(words.begin(), words.end(), isShorter);
  119. // analyze complexity: report frequency of words of each size
  120. // and total number/% of words greaten than length 6
  121. report_complexity(words.begin(), words.end());
  122. return 0;
  123. }