vec-opnew.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 <iostream>
  30. using std::cout; using std::endl;
  31. #include <memory>
  32. // pseudo-implementation of memory allocation strategy for a vector-like class
  33. template <class T> class Vector {
  34. public:
  35.     Vector(): elements(0), first_free(0), end(0) { }
  36.     void push_back(const T&);
  37.     // . . .
  38.     T& operator[](size_t n) { return elements[n]; }
  39.     const T& operator[](size_t n) const { return elements[n]; }
  40. private:
  41.     static std::allocator<T> alloc; // object to get raw memory
  42.     void reallocate(); // get more space and copy existing elements
  43.     T* elements;       // pointer to first element in the array
  44.     T* first_free;     // pointer to first free element in the array
  45.     T* end;            // pointer to one past the end of the array
  46.     // . . .
  47. };
  48. #include <algorithm>
  49. using std::allocator;
  50. template <class T> allocator<T> Vector<T>::alloc;
  51. using std::max;
  52. using std::uninitialized_copy;
  53. template <class T>
  54. void Vector<T>::reallocate()
  55. {
  56.     // compute size of current array and allocate space for twice as many elements
  57.     std::ptrdiff_t size = first_free - elements; 
  58.     std::ptrdiff_t newcapacity = 2 * max(size, 1);
  59.     T* newelements = alloc.allocate(newcapacity);
  60.  
  61.     // construct copies of the existing elements in the new space
  62.     uninitialized_copy(elements, first_free, newelements);
  63.     // destroy the old elements in reverse order
  64.     for (T *p = first_free; p != elements; /*empty*/ )
  65.         alloc.destroy(--p);
  66.     
  67.     // deallocate the memory that they occupied
  68.     // deallocate cannot be called on a 0 pointer
  69.     if (elements)
  70.         alloc.deallocate(elements, end - elements);
  71.     // make our data structure point to the new elements
  72.     elements = newelements;
  73.     first_free = elements + size;
  74.     end = elements + newcapacity;
  75. }
  76. template <class T>
  77. void Vector<T>::push_back(const T& t)
  78. {
  79.     // are we out of space?
  80.     if (first_free == end)
  81.       reallocate(); // gets more space and copies existing elements to it
  82.     alloc.construct(first_free, t);
  83.     ++first_free;
  84. }
  85. int main()
  86. {
  87.     Vector<int> vi;
  88.     for (int i = 0; i != 10; ++i) {
  89.       vi.push_back(i);
  90.       cout << vi[i] << endl;
  91.     }
  92.     for (int i = 0; i != 10; ++i)
  93.       cout << vi[i] << endl;
  94.     return 0;
  95. }