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