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

书籍源码

开发平台:

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 "Basket.h"
  30. #include <algorithm>
  31. using std::multiset; using std::map; using std::pair; using std::size_t;
  32. using std::string; using std::ostream; using std::endl; using std::min;
  33. using std::cout;
  34. // debugging routine to check contents in a Basket
  35. void Basket::display(ostream &os) const
  36. {
  37.     os << "Basket size: " << items.size() << endl;
  38.     // print each distinct isbn in the Basket along with
  39.     // count of how many copies are ordered and what their price will be
  40.     // upper_bound returns an iterator to the next item in the set
  41.     for (const_iter next_item = items.begin();
  42.                     next_item != items.end();
  43.                     next_item = items.upper_bound(*next_item))
  44.     {
  45.         // we know there's at least one element with this key in the Basket
  46.         os << (*next_item)->book() << " occurs " 
  47.            << items.count(*next_item) << " times" 
  48.            << " for a price of " 
  49.            << (*next_item)->net_price(items.count(*next_item)) 
  50.            << endl;
  51.     }
  52. }
  53. void print_total(ostream &, const Item_base&, size_t);
  54. // calculate and print price for given number of copies, applying any discounts 
  55. void print_total(ostream &os, 
  56.                  const Item_base &item, size_t n)
  57. {
  58.     os << "ISBN: " << item.book() // calls Item_base::book
  59.        << "tnumber sold: " << n << "ttotal price: "
  60.        // virtual call: which version of net_price to call is resolved at runtime
  61.        << item.net_price(n) 
  62.        << endl;
  63. }
  64. double Basket::total() const
  65. {
  66.     double sum = 0.0;    // holds the running total 
  67.     for (const_iter iter = items.begin(); 
  68.                     iter != items.end();
  69.                     iter = items.upper_bound(*iter)) 
  70.     {
  71.         // we know there's at least one element with this key in the Basket
  72.         print_total(cout, *(iter->h), items.count(*iter));
  73.         // virtual call to net_price applies appropriate discounts, if any
  74.         sum += (*iter)->net_price(items.count(*iter));
  75.     }
  76.     return sum;
  77. }
  78. // if specified number of items are purchased, use discounted price 
  79. double Bulk_item::net_price(size_t cnt) const
  80. {
  81.     if (cnt > min_qty)
  82.         return cnt * (1 - discount) * price;
  83.     else
  84.         return cnt * price;
  85. }
  86. // use discounted price for up to a specified number of items
  87. // additional items priced at normal, undiscounted price
  88. double Lim_item::net_price(size_t cnt) const
  89. {
  90.     size_t discounted = min(cnt, max_qty);
  91.     size_t undiscounted = cnt - discounted;
  92.     return discounted * (1 - discount) * price 
  93.            + undiscounted * price;
  94. }