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

书籍源码

开发平台:

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. template <class Type> class Queue {
  30.     // interface functions to Queue are unchanged
  31. public:
  32.     Queue(): head(0), tail(0) { }
  33.     // copy control to manage pointers to QueueItems in the Queue
  34.     Queue(const Queue &Q): head(0), tail(0) {copy_elems(Q);}
  35.     Queue& operator=(const Queue&);
  36.     ~Queue() { destroy(); }
  37.     // return element from head of Queue
  38.     // unchecked operation: front on an empty Queue is undefined
  39.     Type& front()            { return head->item; }
  40.     const Type front() const { return head->item; }
  41.     void push(const Type &);// add element to back of Queue
  42.     void pop();             // remove element from head of Queue
  43.     bool empty() const {    // true if no elements in the Queue
  44.         return head == 0;
  45.     }
  46. private:
  47.     // workaround: MS Compiler doesn't allow nested template class
  48.     // to be defined outside the class body
  49.     //struct QueueItem;  // forward declaration of nested type QueueItem
  50.     struct QueueItem {
  51.         QueueItem(const Type &t): item(t), next(0) { }
  52.         Type item;           // value stored in this element
  53.         QueueItem *next;     // pointer to next element in the Queue
  54.         // MS won't allow definition outside the class so no static members
  55.         // of nested template classes
  56.         //static int static_mem;  
  57.     };
  58.     QueueItem *head;   // pointer to first element in Queue
  59.     QueueItem *tail;   // pointer to last element in Queue
  60.     // utility functions used by copy constructor, assignment and destructor
  61.     void destroy();          // delete all the elements
  62.     void copy_elems(const Queue&); // copy all elements from parameter
  63. private:
  64.     // copy all elements from input range denoted by iterator pair
  65.     // workaround: MS Compiler requires member templates to be 
  66.     // defined inside the class body
  67.     template <class Iter> void copy_elems(Iter, Iter)
  68.     {
  69.         while (beg != end) {
  70.            push(*beg);
  71.            ++beg;
  72.         }
  73.     }
  74. };
  75. template <class Type>
  76. void
  77. Queue<Type>::copy_elems(const Queue &orig)
  78. {
  79.     // copy elements from orig into this Queue
  80.     QueueItem *pt = orig.head;
  81.     while (pt) {     // last element has next pointer == 0
  82.         push(pt->item);  // copy the element
  83.         pt = pt->next;   // get the next one from orig
  84.     }
  85. }
  86. template <class Type>
  87. Queue<Type>& Queue<Type>::operator=(const Queue &rhs)
  88. {
  89.     if (this != &rhs) {
  90.         // destroy elements on this Queue
  91.         destroy();
  92.         copy_elems(rhs);    // copy from rhs into left-hand Queue
  93.     }
  94.     return *this;
  95. }
  96. template <class Type>
  97. void
  98. Queue<Type>::destroy()
  99. {
  100.     while (!empty())
  101.         pop();
  102. }
  103. template <class Type>
  104. void Queue<Type>::push(const Type &val)
  105. {
  106.     // allocate a new QueueItem object
  107.     QueueItem *pt = new QueueItem(val);
  108.     // put item onto existing queue
  109.     if (empty())
  110.         head = tail = pt;   // queue has only one element
  111.     else
  112.     {
  113.         tail->next = pt;     // add new element to end of queue
  114.         tail = pt;
  115.     }
  116. }
  117. template <class Type>
  118. void Queue<Type>::pop()
  119. {
  120.     // pop is unchecked: popping off an empty Queue is undefined 
  121.     QueueItem* p = head;     // keep pointer to head so can delete it
  122.     head = head->next;       // head now points to next element
  123.     delete p;                // delete old head element
  124. }
  125. /* workaround: MS Complier doesn't allow member templates to be
  126.  * defined outside the class body
  127. template <class Type> template <class Iter>
  128. void Queue<Type>::copy_elems(Iter beg, Iter end)
  129. {
  130.     while (beg != end) {
  131.        push(*beg);  
  132.        ++beg;
  133.     }
  134. }
  135. * because can't define a member oustide the class, also can't
  136. * have static members of nested template classes
  137. // defines an int static member of QueueItem,
  138. // which is a type nested inside Queue<Type>
  139. template <class Type>
  140. int Queue<Type>::QueueItem::static_mem = 1024;
  141. */
  142. #include <iostream>
  143. using std::cout; using std::endl;
  144. Queue<int> queue1;
  145. int main() 
  146. {
  147.     for (int ix = 0; ix != 1024; ++ix)
  148.         queue1.push(ix);
  149.     
  150.     for (int ix = 0; ix != 1024; ++ix) {
  151.         int i = queue1.front();  // check next item
  152.         if (i != ix)
  153.              cout << "Something's wrong! i = " << i
  154.                   << " ix = " << ix << endl;
  155.         queue1.pop();   // and remove it
  156.     }
  157.     if (!queue1.empty())
  158.         cout << "Queue is not empty but should be!" << endl;
  159.     else
  160.         cout << "OK, queue empty again" << endl;
  161.     for (int ix = 0; ix != 1024; ++ix)
  162.         queue1.push(ix);
  163.     Queue<int> queue2(queue1);  // use copy constructor
  164.     for (int ix = 0; ix != 1024; ++ix) {
  165.         int i = queue2.front();   // check next item
  166.         if (i != ix)
  167.              cout << "Something's wrong! i = " << i
  168.                   << " ix = " << ix << endl;
  169.         queue2.pop();  // and remove it
  170.     }
  171.     if (!queue2.empty())
  172.         cout << "queue2 is not empty but should be!" << endl;
  173.     else
  174.         cout << "OK, queue2 empty again" << endl;
  175.     queue2 = queue1;  // use asssignment operator
  176.     for (int ix = 0; ix != 1024; ++ix) {
  177.         int i = queue2.front();
  178.         if (i != ix)
  179.              cout << "Something's wrong! i = " << i
  180.                   << " ix = " << ix << endl;
  181.         queue2.pop();
  182.     }
  183.     if (!queue2.empty())
  184.         cout << "queue2 is not empty but should be!" << endl;
  185.     else
  186.         cout << "OK, queue2 empty again" << endl;
  187.     
  188. }