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

书籍源码

开发平台:

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 "Query.h"
  30. #include "TextQuery.h"
  31. #include <set>
  32. #include <algorithm>
  33. #include <iostream>
  34. using std::set;
  35. using std::ostream;
  36. using std::inserter; 
  37. using std::set_difference; 
  38. using std::set_union; 
  39. using std::set_intersection;
  40. // returns lines not in its operand's result sets
  41. set<TextQuery::line_no>
  42. NotQuery::eval(const TextQuery& file) const
  43. {
  44.     // virtual call through the Query handle to eval
  45.     set<TextQuery::line_no> has_val = query.eval(file);
  46.     set<line_no> ret_lines;
  47.     // for each line the input file, check whether that line is in has_val
  48.     // if not, add that line number to ret_lines
  49.     for (TextQuery::line_no n = 0; n != file.size(); ++n)
  50.         if (has_val.find(n) == has_val.end())
  51.             ret_lines.insert(n);
  52.     return ret_lines;
  53. }
  54. // returns intersection of its operands' result sets
  55. set<TextQuery::line_no>
  56. AndQuery::eval(const TextQuery& file) const
  57. {
  58.     // virtual calls through the Query handle to get result sets for the operands
  59.     set<line_no> left = lhs.eval(file), 
  60.                  right = rhs.eval(file);
  61.     set<line_no> ret_lines;  // destination to hold results 
  62.     // writes intersection of two ranges to a destination iterator
  63.     // destination iterator in this call adds elements to ret
  64.     set_intersection(left.begin(), left.end(), 
  65.                   right.begin(), right.end(),
  66.                   inserter(ret_lines, ret_lines.begin()));
  67.     return ret_lines;
  68. }
  69. // returns union of its operands' result sets
  70. set<TextQuery::line_no>
  71. OrQuery::eval(const TextQuery& file) const
  72. {
  73.     // virtual calls through the Query handle to get result sets for the operands
  74.     set<line_no> left = lhs.eval(file), 
  75.                  right = rhs.eval(file);
  76.     // destination to hold results, start by copying lines from left
  77.     set<line_no> ret_lines(left);  
  78.     // inserts the lines from right that aren't already in ret_lines
  79.     ret_lines.insert(right.begin(), right.end());
  80.     return ret_lines;
  81. }