| | | | | |

Vector Implementation Plan

protected:
  // data
  size_t size, capacity;
  T*     content;   // pointer to the primative array elements

  // method
  static T* newarray (size_t);  // safe space allocator

| | Top of Page | 1. Positional Containers - 12 of 23