summaryrefslogtreecommitdiff
path: root/STL/bvector.h
blob: 01f66ecddd351c7d24c696fa30dc03cab3e13d4f (plain)
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
/*
 *
 * 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 and Microsoft
 * Corporation make no representations about the suitability of this
 * software for any purpose.  It is provided "as is" without express or
 * implied warranty.
 *
 */

// vector<bool> is replaced by bit_vector at present because bool is not
// implemented.  

#ifndef BVECTOR_H
#define BVECTOR_H

#include <function.h>
#include <algobase.h>
#include <iterator.h>
#include <bool.h>

#ifndef Allocator
#define Allocator allocator
#include <defalloc.h>
#endif

#define __WORD_BIT (int(CHAR_BIT*sizeof(unsigned int)))


/*
 *Added by d:\\convert.pl --begin--
 */
namespace std {
/*
 *Added by d:\\convert.pl --end--
 */

class bit_vector {
public:
    typedef Allocator<unsigned int> vector_allocator;
    typedef bool value_type;
    typedef vector_allocator::size_type size_type;
    typedef vector_allocator::difference_type difference_type; 

    class iterator;
    class const_iterator;

    class reference {
    friend class iterator;
    friend class const_iterator;
    protected:
  unsigned int* p;
  unsigned int mask;
  reference(unsigned int* x, unsigned int y) : p(x), mask(y) {}
    public:
  reference() : p(0), mask(0) {}
  operator bool() const { return !(!(*p & mask)); }
  reference& operator=(bool x) {
      if (x)      
    *p |= mask;
      else 
    *p &= ~mask;
      return *this;
  }
  reference& operator=(const reference& x) { return *this = bool(x); }
  bool operator==(const reference& x) const {
      return bool(*this) == bool(x);
  }
  bool operator<(const reference& x) const {
      return bool(*this) < bool(x);
  }
  void flip() { *p ^= mask; }
    };
    typedef bool const_reference;
    class iterator : public random_access_iterator<bool, difference_type> {
    friend class bit_vector;
    friend class const_iterator;
    protected:
  unsigned int* p;
  unsigned int offset;
  void bump_up() {
      if (offset++ == __WORD_BIT - 1) {
    offset = 0;
    ++p;
      }
  }
    void bump_down() {
  if (offset-- == 0) {
      offset = __WORD_BIT - 1;
      --p;
  }
    }
    public:
  iterator() : p(0), offset(0) {}
  iterator(unsigned int* x, unsigned int y) : p(x), offset(y) {}
  reference operator*() const { return reference(p, 1U << offset); }
  iterator& operator++() {
      bump_up();
      return *this;
  }
  iterator operator++(int) {
      iterator tmp = *this;
      bump_up();
      return tmp;
  }
  iterator& operator--() {
      bump_down();
      return *this;
  }
  iterator operator--(int) {
      iterator tmp = *this;
      bump_down();
      return tmp;
  }
  iterator& operator+=(difference_type i) {
      difference_type n = i + offset;
      p += n / __WORD_BIT;
      n = n % __WORD_BIT;
      if (n < 0) {
    offset = n + __WORD_BIT;
    --p;
      } else
    offset = n;
      return *this;
  }
  iterator& operator-=(difference_type i) {
      *this += -i;
      return *this;
  }
  iterator operator+(difference_type i) const {
      iterator tmp = *this;
      return tmp += i;
  }
  iterator operator-(difference_type i) const {
      iterator tmp = *this;
      return tmp -= i;
  }
  difference_type operator-(iterator x) const {
      return __WORD_BIT * (p - x.p) + offset - x.offset;
  }
  reference operator[](difference_type i) { return *(*this + i); }
  bool operator==(const iterator& x) const {
      return p == x.p && offset == x.offset;
  }
  bool operator<(iterator x) const {
      return p < x.p || (p == x.p && offset < x.offset);
  }
    };

    class const_iterator 
  : public random_access_iterator<bool, difference_type> {
    friend class bit_vector;
    protected:
  unsigned int* p;
  unsigned int offset;
  void bump_up() {
      if (offset++ == __WORD_BIT - 1) {
    offset = 0;
    ++p;
      }
  }
    void bump_down() {
  if (offset-- == 0) {
      offset = __WORD_BIT - 1;
      --p;
  }
    }
    public:
  const_iterator() : p(0), offset(0) {}
  const_iterator(unsigned int* x, unsigned int y) : p(x), offset(y) {}
  const_iterator(const iterator& x) : p(x.p), offset(x.offset) {}
  const_reference operator*() const {
      return reference(p, 1U << offset);
  }
  const_iterator& operator++() {
      bump_up();
      return *this;
  }
  const_iterator operator++(int) {
      const_iterator tmp = *this;
      bump_up();
      return tmp;
  }
  const_iterator& operator--() {
      bump_down();
      return *this;
  }
  const_iterator operator--(int) {
      const_iterator tmp = *this;
      bump_down();
      return tmp;
  }
  const_iterator& operator+=(difference_type i) {
      difference_type n = i + offset;
      p += n / __WORD_BIT;
      n = n % __WORD_BIT;
      if (n < 0) {
    offset = n + __WORD_BIT;
    --p;
      } else
    offset = n;
      return *this;
  }
  const_iterator& operator-=(difference_type i) {
      *this += -i;
      return *this;
  }
  const_iterator operator+(difference_type i) const {
      const_iterator tmp = *this;
      return tmp += i;
  }
  const_iterator operator-(difference_type i) const {
      const_iterator tmp = *this;
      return tmp -= i;
  }
  difference_type operator-(const_iterator x) const {
      return __WORD_BIT * (p - x.p) + offset - x.offset;
  }
  const_reference operator[](difference_type i) { 
      return *(*this + i); 
  }
  bool operator==(const const_iterator& x) const {
      return p == x.p && offset == x.offset;
  }
  bool operator<(const_iterator x) const {
      return p < x.p || (p == x.p && offset < x.offset);
  }
    };

    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<unsigned int> static_allocator;
    iterator start;
    iterator finish;
    unsigned int* end_of_storage;
    unsigned int* bit_alloc(size_type n) {
  return static_allocator.allocate((n + __WORD_BIT - 1)/__WORD_BIT);
    }
    void initialize(size_type n) {
  unsigned int* q = bit_alloc(n);
  end_of_storage = q + (n + __WORD_BIT - 1)/__WORD_BIT;
  start = iterator(q, 0);
  finish = start + n;
    }
    void insert_aux(iterator position, bool x);
    typedef bit_vector self;
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(const_iterator(end_of_storage, 0) - 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); }
    bit_vector() : start(iterator()), finish(iterator()), end_of_storage(0) {}
    bit_vector(size_type n, bool value = bool()) {
  initialize(n);
  fill(start.p, end_of_storage, value ? ~0 : 0);
    }
    bit_vector(const self& x) {
  initialize(x.size());
  copy(x.begin(), x.end(), start);
    }
    bit_vector(const_iterator first, const_iterator last) {
  size_type n = 0;
  distance(first, last, n);
  initialize(n);
  copy(first, last, start);
    }
    ~bit_vector() { static_allocator.deallocate(start.p); }
    self& operator=(const self& x) {
  if (&x == this) return *this;
  if (x.size() > capacity()) {
      static_allocator.deallocate(start.p); 
      initialize(x.size());
  }
  copy(x.begin(), x.end(), begin());
  finish = begin() + x.size();
  return *this;
    }
    void reserve(size_type n) {
  if (capacity() < n) {
      unsigned int* q = bit_alloc(n);
      finish = copy(begin(), end(), iterator(q, 0));
      static_allocator.deallocate(start.p);
      start = iterator(q, 0);
      end_of_storage = q + (n + __WORD_BIT - 1)/__WORD_BIT;
  }
    }
    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(bool x) {
  if (finish.p != end_of_storage)
      *finish++ = x;
  else
      insert_aux(end(), x);
    }
    void swap(bit_vector& x) {
  std::swap(start, x.start);
  std::swap(finish, x.finish);
  std::swap(end_of_storage, x.end_of_storage);
    }
    iterator insert(iterator position, bool x) {
  size_type n = position - begin();
  if (finish.p != end_of_storage && position == end())
      *finish++ = x;
  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, bool x);
    void pop_back() { --finish; }
    void erase(iterator position) {
  if (position + 1 != end())
      copy(position + 1, end(), position);
  --finish;
    }
    void erase(iterator first, iterator last) {
  finish = copy(last, end(), first);
    }
};

// Code moved to bvector.cpp by Terris

// Added by Terris --begin--
bool operator==(const bit_vector& x, const bit_vector& y);
bool operator<(const bit_vector& x, const bit_vector& y);
void swap(bit_vector::reference x, bit_vector::reference y);
// Added by Terris --end--

// Added by Terris --begin--

#ifndef STL_BVECTOR
#undef Allocator
#undef __WORD_BIT
#endif

// Added by Terris --end--


/*
 *Added by d:\\convert.pl --begin--
 */
}
/*
 *Added by d:\\convert.pl --end--
 */

#endif