1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
/*
*
* Copyright (c) 1994
* Hewlett-Packard Company
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this permission notice appear
* in supporting documentation. Hewlett-Packard Company makes no
* representations about the suitability of this software for any
* purpose. It is provided "as is" without express or implied warranty.
*
*/
#ifndef VECTOR_H
#define VECTOR_H
#include <function.h>
#include <algobase.h>
#include <bool.h>
#ifndef Allocator
#define Allocator allocator
#include <defalloc.h>
#endif
#ifndef vector
#define vector vector
#endif
template <class T>
class vector {
public:
typedef Allocator<T> vector_allocator;
typedef T value_type;
typedef vector_allocator::pointer pointer;
typedef vector_allocator::pointer iterator;
typedef vector_allocator::const_pointer const_iterator;
typedef vector_allocator::reference reference;
typedef vector_allocator::const_reference const_reference;
typedef vector_allocator::size_type size_type;
typedef vector_allocator::difference_type difference_type;
typedef reverse_iterator<const_iterator, value_type, const_reference,
difference_type> const_reverse_iterator;
typedef reverse_iterator<iterator, value_type, reference, difference_type>
reverse_iterator;
protected:
static Allocator<T> static_allocator;
iterator start;
iterator finish;
iterator end_of_storage;
void insert_aux(iterator position, const T& x);
public:
iterator begin() { return start; }
const_iterator begin() const { return start; }
iterator end() { return finish; }
const_iterator end() const { return finish; }
reverse_iterator rbegin() { return reverse_iterator(end()); }
const_reverse_iterator rbegin() const {
return const_reverse_iterator(end());
}
reverse_iterator rend() { return reverse_iterator(begin()); }
const_reverse_iterator rend() const {
return const_reverse_iterator(begin());
}
size_type size() const { return size_type(end() - begin()); }
size_type max_size() const { return static_allocator.max_size(); }
size_type capacity() const { return size_type(end_of_storage - begin()); }
bool empty() const { return begin() == end(); }
reference operator[](size_type n) { return *(begin() + n); }
const_reference operator[](size_type n) const { return *(begin() + n); }
vector() : start(0), finish(0), end_of_storage(0) {}
vector(size_type n, const T& value = T()) {
start = static_allocator.allocate(n);
uninitialized_fill_n(start, n, value);
finish = start + n;
end_of_storage = finish;
}
vector(const vector<T>& x) {
start = static_allocator.allocate(x.end() - x.begin());
finish = uninitialized_copy(x.begin(), x.end(), start);
end_of_storage = finish;
}
vector(const_iterator first, const_iterator last) {
size_type n = 0;
distance(first, last, n);
start = static_allocator.allocate(n);
finish = uninitialized_copy(first, last, start);
end_of_storage = finish;
}
~vector() {
destroy(start, finish);
static_allocator.deallocate(start);
}
vector<T>& operator=(const vector<T>& x);
void reserve(size_type n) {
if (capacity() < n) {
iterator tmp = static_allocator.allocate(n);
uninitialized_copy(begin(), end(), tmp);
destroy(start, finish);
static_allocator.deallocate(start);
finish = tmp + size();
start = tmp;
end_of_storage = begin() + n;
}
}
reference front() { return *begin(); }
const_reference front() const { return *begin(); }
reference back() { return *(end() - 1); }
const_reference back() const { return *(end() - 1); }
void push_back(const T& x) {
if (finish != end_of_storage) {
/* Borland bug */
construct(finish, x);
finish++;
} else
insert_aux(end(), x);
}
void swap(vector<T>& x) {
::swap(start, x.start);
::swap(finish, x.finish);
::swap(end_of_storage, x.end_of_storage);
}
iterator insert(iterator position, const T& x) {
size_type n = position - begin();
if (finish != end_of_storage && position == end()) {
/* Borland bug */
construct(finish, x);
finish++;
} else
insert_aux(position, x);
return begin() + n;
}
void insert (iterator position, const_iterator first,
const_iterator last);
void insert (iterator position, size_type n, const T& x);
void pop_back() {
/* Borland bug */
--finish;
destroy(finish);
}
void erase(iterator position) {
if (position + 1 != end())
copy(position + 1, end(), position);
/* Borland bug */
--finish;
destroy(finish);
}
void erase(iterator first, iterator last) {
vector<T>::iterator i = copy(last, end(), first);
destroy(i, finish);
// work around for destroy(copy(last, end(), first), finish);
finish = finish - (last - first);
}
};
template <class T>
inline bool operator==(const vector<T>& x, const vector<T>& y) {
return x.size() == y.size() && equal(x.begin(), x.end(), y.begin());
}
template <class T>
inline bool operator<(const vector<T>& x, const vector<T>& y) {
return lexicographical_compare(x.begin(), x.end(), y.begin(), y.end());
}
template <class T>
vector<T>::vector_allocator vector<T>::static_allocator;
template <class T>
vector<T>& vector<T>::operator=(const vector<T>& x) {
if (&x == this) return *this;
if (x.size() > capacity()) {
destroy(start, finish);
static_allocator.deallocate(start);
start = static_allocator.allocate(x.end() - x.begin());
end_of_storage = uninitialized_copy(x.begin(), x.end(), start);
} else if (size() >= x.size()) {
vector<T>::iterator i = copy(x.begin(), x.end(), begin());
destroy(i, finish);
// work around for destroy(copy(x.begin(), x.end(), begin()), finish);
} else {
copy(x.begin(), x.begin() + size(), begin());
uninitialized_copy(x.begin() + size(), x.end(), begin() + size());
}
finish = begin() + x.size();
return *this;
}
template <class T>
void vector<T>::insert_aux(iterator position, const T& x) {
if (finish != end_of_storage) {
construct(finish, *(finish - 1));
copy_backward(position, finish - 1, finish);
*position = x;
++finish;
} else {
size_type len = size() ? 2 * size()
: static_allocator.init_page_size();
iterator tmp = static_allocator.allocate(len);
uninitialized_copy(begin(), position, tmp);
construct(tmp + (position - begin()), x);
uninitialized_copy(position, end(), tmp + (position - begin()) + 1);
destroy(begin(), end());
static_allocator.deallocate(begin());
end_of_storage = tmp + len;
finish = tmp + size() + 1;
start = tmp;
}
}
template <class T>
void vector<T>::insert(iterator position, size_type n, const T& x) {
if (n == 0) return;
if (end_of_storage - finish >= n) {
if (end() - position > n) {
uninitialized_copy(end() - n, end(), end());
copy_backward(position, end() - n, end());
fill(position, position + n, x);
} else {
uninitialized_copy(position, end(), position + n);
fill(position, end(), x);
uninitialized_fill_n(end(), n - (end() - position), x);
}
finish += n;
} else {
size_type len = size() + max(size(), n);
iterator tmp = static_allocator.allocate(len);
uninitialized_copy(begin(), position, tmp);
uninitialized_fill_n(tmp + (position - begin()), n, x);
uninitialized_copy(position, end(), tmp + (position - begin() + n));
destroy(begin(), end());
static_allocator.deallocate(begin());
end_of_storage = tmp + len;
finish = tmp + size() + n;
start = tmp;
}
}
template <class T>
void vector<T>::insert(iterator position,
const_iterator first,
const_iterator last) {
if (first == last) return;
size_type n = 0;
distance(first, last, n);
if (end_of_storage - finish >= n) {
if (end() - position > n) {
uninitialized_copy(end() - n, end(), end());
copy_backward(position, end() - n, end());
copy(first, last, position);
} else {
uninitialized_copy(position, end(), position + n);
copy(first, first + (end() - position), position);
uninitialized_copy(first + (end() - position), last, end());
}
finish += n;
} else {
size_type len = size() + max(size(), n);
iterator tmp = static_allocator.allocate(len);
uninitialized_copy(begin(), position, tmp);
uninitialized_copy(first, last, tmp + (position - begin()));
uninitialized_copy(position, end(), tmp + (position - begin() + n));
destroy(begin(), end());
static_allocator.deallocate(begin());
end_of_storage = tmp + len;
finish = tmp + size() + n;
start = tmp;
}
}
#undef Allocator
#undef vector
#endif
|