forked from simongog/sdsl-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
int_vector.hpp
1441 lines (1233 loc) · 45.6 KB
/
int_vector.hpp
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* sdsl - succinct data structures library
Copyright (C) 2008-2013 Simon Gog
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/ .
*/
/*! \file int_vector.hpp
\brief int_vector.hpp contains the sdsl::int_vector class.
\author Simon Gog
*/
#ifndef INCLUDED_SDSL_INT_VECTOR
#define INCLUDED_SDSL_INT_VECTOR
#include "bits.hpp"
#include "structure_tree.hpp"
#include "util.hpp"
#include "io.hpp"
#include "config.hpp"
#include "uintx_t.hpp"
#include "memory_management.hpp"
#include "ram_fs.hpp"
#include "sfstream.hpp"
#include <iosfwd> // forward declaration of ostream
#include <stdexcept> // for exceptions
#include <iostream> // for cerr
#include <typeinfo>
#include <cassert>
#include <iterator>
#include <cstdlib>
#include <cstddef>
#include <ctime> // for rand initialization
#include <cstring> // for memcpy
#include <ostream>
#include <istream>
#include <string>
#include <initializer_list>
#include <type_traits>
#include <vector>
//! Namespace for the succinct data structure library.
namespace sdsl
{
typedef uint64_t std_size_type_for_int_vector;
template<uint8_t t_width=0>
class int_vector;
template<class int_vector_type>
class mm_item;
namespace algorithm
{
template<uint8_t t_width>
static void calculate_sa(const unsigned char* c,
typename int_vector<t_width>::size_type len,
int_vector<t_width>& sa);
}
//! bit_vector is a specialization of the int_vector.
typedef int_vector<1> bit_vector;
template<class t_int_vector>
class int_vector_reference;
template<class t_int_vector>
class int_vector_iterator_base;
template<class t_int_vector>
class int_vector_iterator;
template<class t_int_vector>
class int_vector_const_iterator;
template<uint8_t b, uint8_t t_patter_len> // forward declaration
class rank_support_v;
class rank_support;
class select_support;
template<uint8_t t_bit_pattern, uint8_t t_pattern_len>
class select_support_mcl;
namespace coder
{
class fibonacci;
class elias_delta;
class elias_gamma;
}
template<uint8_t t_width>
struct int_vec_category_trait {
typedef iv_tag type;
};
template<>
struct int_vec_category_trait<1> {
typedef bv_tag type;
};
template<uint8_t t_width>
struct int_vector_trait {
typedef uint64_t value_type;
typedef int_vector<t_width> int_vector_type;
typedef int_vector_reference<int_vector_type> reference;
typedef const uint64_t const_reference;
typedef uint8_t int_width_type;
typedef int_vector_iterator<int_vector_type> iterator;
typedef int_vector_const_iterator<int_vector_type> const_iterator;
static iterator begin(int_vector_type* v, uint64_t*) {
return iterator(v, 0);
}
static iterator end(int_vector_type* v, uint64_t*, int_vector_size_type) {
return iterator(v, v->size()*v->width()) ;
}
static const_iterator begin(const int_vector_type* v, const uint64_t*) {
return const_iterator(v, 0);
}
static const_iterator end(const int_vector_type* v, const uint64_t*, int_vector_size_type) {
return const_iterator(v, v->size()*v->width());
}
};
template<>
struct int_vector_trait<64> {
typedef uint64_t value_type;
typedef int_vector<64> int_vector_type;
typedef uint64_t& reference;
typedef const uint64_t const_reference;
typedef const uint8_t int_width_type;
typedef uint64_t* iterator;
typedef const uint64_t* const_iterator;
static iterator begin(int_vector_type*, uint64_t* begin) {
return begin;
}
static iterator end(int_vector_type*, uint64_t* begin, int_vector_size_type size) {
return begin+size;
}
static const_iterator begin(const int_vector_type*, const uint64_t* begin) {
return begin;
}
static const_iterator end(const int_vector_type*, const uint64_t* begin, int_vector_size_type size) {
return begin+size;
}
};
template<>
struct int_vector_trait<32> {
typedef uint32_t value_type;
typedef int_vector<32> int_vector_type;
typedef uint32_t& reference;
typedef const uint32_t const_reference;
typedef const uint8_t int_width_type;
typedef uint32_t* iterator;
typedef const uint32_t* const_iterator;
static iterator begin(int_vector_type*, uint64_t* begin) {
return (uint32_t*)begin;
}
static iterator end(int_vector_type*, uint64_t* begin, int_vector_size_type size) {
return ((uint32_t*)begin)+size;
}
static const_iterator begin(const int_vector_type*, const uint64_t* begin) {
return (uint32_t*)begin;
}
static const_iterator end(const int_vector_type*, const uint64_t* begin, int_vector_size_type size) {
return ((uint32_t*)begin)+size;
}
};
template<>
struct int_vector_trait<16> {
typedef uint16_t value_type;
typedef int_vector<16> int_vector_type;
typedef uint16_t& reference;
typedef const uint16_t const_reference;
typedef const uint8_t int_width_type;
typedef uint16_t* iterator;
typedef const uint16_t* const_iterator;
static iterator begin(int_vector_type*, uint64_t* begin) {
return (uint16_t*)begin;
}
static iterator end(int_vector_type*, uint64_t* begin, int_vector_size_type size) {
return ((uint16_t*)begin)+size;
}
static const_iterator begin(const int_vector_type*, const uint64_t* begin) {
return (uint16_t*)begin;
}
static const_iterator end(const int_vector_type*, const uint64_t* begin, int_vector_size_type size) {
return ((uint16_t*)begin)+size;
}
};
template<>
struct int_vector_trait<8> {
typedef uint8_t value_type;
typedef int_vector<8> int_vector_type;
typedef uint8_t& reference;
typedef const uint8_t const_reference;
typedef const uint8_t int_width_type;
typedef uint8_t* iterator;
typedef const uint8_t* const_iterator;
static iterator begin(int_vector_type*, uint64_t* begin) {
return (uint8_t*)begin;
}
static iterator end(int_vector_type*, uint64_t* begin, int_vector_size_type size) {
return ((uint8_t*)begin)+size;
}
static const_iterator begin(const int_vector_type*, const uint64_t* begin) {
return (uint8_t*)begin;
}
static const_iterator end(const int_vector_type*, const uint64_t* begin, int_vector_size_type size) {
return ((uint8_t*)begin)+size;
}
};
//! A generic vector class for integers of width \f$w\in [1..64]\f$.
/*! \author Simon Gog
*
* This generic vector class could be used to generate a vector
* that contains integers of fixed width \f$w\in [1..64]\f$.
*
* \tparam t_width Width of the integer. If set to `0` it is variable
* during runtime, otherwise fixed at compile time.
* @ingroup int_vector
*/
template<uint8_t t_width>
class int_vector
{
private:
static_assert(t_width <= 64 , "int_vector: width of must be at most 64bits.");
public:
typedef typename int_vector_trait<t_width>::value_type value_type;
typedef typename int_vector_trait<t_width>::iterator iterator;
typedef typename int_vector_trait<t_width>::const_iterator const_iterator;
typedef typename int_vector_trait<t_width>::reference reference;
typedef typename int_vector_trait<t_width>::const_reference const_reference;
typedef int_vector_reference<int_vector>* pointer;
typedef const value_type* const_pointer;
typedef ptrdiff_t difference_type;
typedef int_vector_size_type size_type;
typedef typename int_vector_trait<t_width>::int_width_type int_width_type;
typedef rank_support_v<1,1> rank_1_type;
typedef rank_support_v<0,1> rank_0_type;
typedef select_support_mcl<1,1> select_1_type;
typedef select_support_mcl<0,1> select_0_type;
typedef typename int_vec_category_trait<t_width>::type index_category;
friend struct int_vector_trait<t_width>;
friend class int_vector_iterator_base<int_vector>;
friend class int_vector_iterator<int_vector>;
friend class int_vector_const_iterator<int_vector>;
friend class coder::elias_delta;
friend class coder::elias_gamma;
friend class coder::fibonacci;
friend class memory_manager;
friend void util::set_random_bits<int_vector>(int_vector& v, int);
friend void util::_set_zero_bits<int_vector>(int_vector&);
friend void util::_set_one_bits<int_vector>(int_vector&);
friend void util::bit_compress<int_vector>(int_vector&);
friend void util::set_to_value<int_vector>(int_vector&, uint64_t);
friend bool load_vector_from_file<int_vector>(int_vector&, const std::string&,uint8_t,uint8_t);
friend void algorithm::calculate_sa<t_width>(const unsigned char* c, typename int_vector<t_width>::size_type len, int_vector<t_width>& sa);
enum { fixed_int_width = t_width }; // make template parameter accessible
private:
size_type m_size; //!< Number of bits needed to store int_vector.
uint64_t* m_data; //!< Pointer to the memory for the bits.
int_width_type m_width; //!< Width of the integers.
public:
//! Constructor for int_vector.
/*! \param size Number of elements. Default value is 0.
\param default_value Initialize all value to `default value`.
\param int_width The width of each integer.
\sa resize, width
*/
int_vector(size_type size = 0, value_type default_value = 0,
uint8_t int_width = t_width);
//! Constructor for initializer_list.
template<class t_T>
int_vector(std::initializer_list<t_T> il) : int_vector() {
resize(il.size());
size_type idx = 0;
for (auto x : il) {
(*this)[idx++] = x;
}
}
//! Move constructor.
int_vector(int_vector&& v);
//! Copy constructor.
int_vector(const int_vector& v);
//! Destructor.
~int_vector();
//! Equivalent to size() == 0.
bool empty() const {
return 0==m_size;
}
//! Swap method for int_vector.
void swap(int_vector& v);
//! Resize the int_vector in terms of elements.
/*! \param size The size to resize the int_vector in terms of elements.
*/
void resize(const size_type size) {
bit_resize(size * width());
}
//! Resize the int_vector in terms of bits.
/*! \param size The size to resize the int_vector in terms of bits.
*/
void bit_resize(const size_type size);
//! The number of elements in the int_vector.
/*! \sa max_size, bit_size, capacity
*/
size_type size() const {
return m_size/m_width;
}
//! Maximum size of the int_vector.
/*! \sa size, bit_size, capacity
*/
static size_type max_size() {
return ((size_type)1)<<(sizeof(size_type)*8-6);
}
//! The number of bits in the int_vector.
/*! \sa size, max_size, bit_size, capacity
*/
size_type bit_size() const {
return m_size;
}
//! Returns the size of the occupied bits of the int_vector.
/*! The capacity of a int_vector is greater or equal to the
bit_size of the vector: capacity() >= bit_size().
\sa size, bit_size, max_size, capacity
*/
size_type capacity() const {
return ((m_size+63)>>6)<<6;
}
//! Pointer to the raw data of the int_vector
/*! \returns Const pointer to the raw data of the int_vector
*/
const uint64_t* data() const {
return m_data;
}
//! Get the integer value of the binary string of length len starting at position idx in the int_vector.
/*! \param idx Starting index of the binary representation of the integer.
\param len Length of the binary representation of the integer. Default value is 64.
\returns The integer value of the binary string of length len starting at position idx.
\sa setInt, getBit, setBit
*/
value_type get_int(size_type idx, const uint8_t len=64) const;
//! Set the bits from position idx to idx+len-1 to the binary representation of integer x.
/*! The bit at position idx represents the least significant bit(lsb), and the bit at
position idx+len-1 the most significant bit (msb) of x.
\param idx Starting index of the binary representation of x.
\param x The integer to store in the int_vector.
\param len The length used to store x in the int_vector. Default value is 64.
\sa getInt, getBit, setBit
*/
void set_int(size_type idx, value_type x, const uint8_t len=64);
//! Returns the width of the integers which are accessed via the [] operator.
/*! \returns The width of the integers which are accessed via the [] operator.
\sa width
*/
uint8_t width() const {
return m_width;
}
//! Sets the width of the integers which are accessed via the [] operator, if t_width equals 0.
/*! \param intWidth New width of the integers accessed via the [] operator.
\note This method has no effect if t_width is in the range [1..64].
\sa width
*/
void width(uint8_t) { }
// Write data (without header) to a stream.
size_type write_data(std::ostream& out) const;
//! Serializes the int_vector to a stream.
/*! \return The number of bytes written to out.
* \sa load
*/
size_type serialize(std::ostream& out, structure_tree_node* v=nullptr,
std::string name = "", bool write_fixed_as_variable=false) const;
//! Load the int_vector for a stream.
void load(std::istream& in);
//! non const version of [] operator
/*! \param i Index the i-th integer of length width().
* \return A reference to the i-th integer of length width().
*/
inline reference operator[](const size_type& i);
//! const version of [] operator
/*! \param i Index the i-th integer of length width().
* \return The value of the i-th integer of length width().
*/
inline const_reference operator[](const size_type& i) const;
//! Assignment operator.
/*! \param v The vector v which should be assigned
*/
int_vector& operator=(const int_vector& v);
//! Move assignment operator.
int_vector& operator=(int_vector&& v);
//! Equality operator for two int_vectors.
/*! Two int_vectors are equal if
* - capacities and sizes are equal and
* - width are equal and
* - the bits in the range [0..bit_size()-1] are equal.
*/
bool operator==(const int_vector& v) const;
//! Inequality operator for two int_vectors.
/*! Two int_vectors are not equal if
* - capacities and sizes are not equal or
* - int widths are not equal or
* - the bits in the range [0..bit_size()-1] are not equal.
*/
bool operator!=(const int_vector& v) const;
//! Less operator for two int_vectors
/*! int_vector w is less than v if
* - w[i]==v[i] for i<j and w[j]<v[j] with j in [0, min(w.size(), v.size()) )
* - or w[i]==v[i] for all i < min(w.size(), v.size()) and w.size()<v.size().
* \sa operator>
*/
bool operator<(const int_vector& v) const;
//! Greater operator for two int_vectors
/*! int_vector w is greater than v if
* - w[i]==v[i] for i<j and w[j]>v[j] with j in [0, min(w.size(), v.size()) )
* - or w[i]==v[i] for all i < min(w.size(), v.size()) and w.size()>v.size().
*/
bool operator>(const int_vector& v) const;
//! Less or equal operator
bool operator<=(const int_vector& v) const;
//! Greater of equal operator
bool operator>=(const int_vector& v) const;
//! Iterator that points to the first element of the int_vector.
/*! Time complexity guaranty is O(1).
*/
const iterator begin() {
return int_vector_trait<t_width>::begin(this, m_data);
}
//! Iterator that points to the element after the last element of int_vector.
/*! Time complexity guaranty is O(1).
*/
const iterator end() {
return int_vector_trait<t_width>::end(this, m_data, (m_size/m_width));
}
//! Const iterator that points to the first element of the int_vector.
const const_iterator begin() const {
return int_vector_trait<t_width>::begin(this, m_data);
}
//! Const iterator that points to the element after the last element of int_vector.
const const_iterator end() const {
return int_vector_trait<t_width>::end(this, m_data, (m_size/m_width));
}
//! Flip all bits of bit_vector
void flip() {
static_assert(1 == t_width, "int_vector: flip() is available only for bit_vector.");
}
//! Read the size and int_width of a int_vector
static void read_header(int_vector_size_type& size, int_width_type& int_width, std::istream& in) {
read_member(size, in);
if (0 == t_width) {
read_member(int_width, in);
}
}
//! Write the size and int_width of a int_vector
static uint64_t write_header(uint64_t size, uint8_t int_width, std::ostream& out) {
uint64_t written_bytes = write_member(size, out);
if (0 == t_width) {
written_bytes += write_member(int_width, out);
}
return written_bytes;
}
struct raw_wrapper {
const int_vector& vec;
raw_wrapper() = delete;
raw_wrapper(const int_vector& _vec) : vec(_vec) {}
size_type
serialize(std::ostream& out, structure_tree_node* v=nullptr, std::string name="")const {
structure_tree_node* child = structure_tree::add_child(v, name, util::class_name(*this));
auto written_bytes = vec.write_data(out);
structure_tree::add_size(child, written_bytes);
return written_bytes;
}
};
const raw_wrapper raw = raw_wrapper(*this);
};
template<>
void int_vector<0>::width(const uint8_t);
template<>
void bit_vector::flip();
//! A proxy class that acts as a reference to an integer of length \p len bits in a int_vector.
/*! \tparam t_int_vector The specific int_vector class.
*/
template<class t_int_vector>
class int_vector_reference
{
public:
typedef typename t_int_vector::value_type value_type;
private:
typename t_int_vector::value_type* const m_word;
const uint8_t m_offset;
const uint8_t m_len; //!< Length of the integer referred to in bits.
public:
//! Constructor for the reference class
/*! \param word Pointer to the corresponding 64bit word in the int_vector.
\param offset Offset to the starting bit (offset in [0..63])
\param len length of the integer, should be v->width()!!!
*/
int_vector_reference(value_type* word, uint8_t offset, uint8_t len):
m_word(word),m_offset(offset),m_len(len) {};
//! Assignment operator for the proxy class
/*!
The integer x is assign to the referenced
position in the t_int_vector with the specified width
of the int_vector
\param x 64bit integer to assign
\return A const_reference to the assigned reference
*/
int_vector_reference& operator=(value_type x) {
bits::write_int(m_word, x, m_offset, m_len);
return *this;
};
int_vector_reference& operator=(const int_vector_reference& x) {
return *this = value_type(x);
};
//! Cast the reference to a int_vector<>::value_type
operator value_type()const {
return bits::read_int(m_word, m_offset, m_len);
}
//! Prefix increment of the proxy object
int_vector_reference& operator++() {
value_type x = bits::read_int(m_word, m_offset, m_len);
bits::write_int(m_word, x+1, m_offset, m_len);
return *this;
}
//! Postfix increment of the proxy object
value_type operator++(int) {
value_type val = (typename t_int_vector::value_type)*this;
++(*this);
return val;
}
//! Prefix decrement of the proxy object
int_vector_reference& operator--() {
value_type x = bits::read_int(m_word, m_offset, m_len);
bits::write_int(m_word, x-1, m_offset, m_len);
return *this;
}
//! Postfix decrement of the proxy object
value_type operator--(int) {
value_type val = (value_type)*this;
--(*this);
return val;
}
//! Add assign from the proxy object
int_vector_reference& operator+=(const value_type x) {
value_type w = bits::read_int(m_word, m_offset, m_len);
bits::write_int(m_word, w+x, m_offset, m_len);
return *this;
}
//! Subtract assign from the proxy object
int_vector_reference& operator-=(const value_type x) {
value_type w = bits::read_int(m_word, m_offset, m_len);
bits::write_int(m_word, w-x, m_offset, m_len);
return *this;
}
bool operator==(const int_vector_reference& x)const {
return value_type(*this) == value_type(x);
}
bool operator<(const int_vector_reference& x)const {
return value_type(*this) < value_type(x);
}
};
// For C++11
template<class t_int_vector>
inline void swap(int_vector_reference<t_int_vector> x,
int_vector_reference<t_int_vector> y)
{
// TODO: more efficient solution?
typename int_vector_reference<t_int_vector>::value_type tmp = x;
x = y;
y = tmp;
}
// For C++11
template<class t_int_vector>
inline void swap(typename int_vector_reference<t_int_vector>::value_type& x,
int_vector_reference<t_int_vector> y)
{
// TODO: more efficient solution?
typename int_vector_reference<t_int_vector>::value_type tmp = x;
x = y;
y = tmp;
}
// For C++11
template<class t_int_vector>
inline void swap(int_vector_reference<t_int_vector> x,
typename int_vector_reference<t_int_vector>::value_type& y)
{
// TODO: more efficient solution?
typename int_vector_reference<t_int_vector>::value_type tmp = x;
x = y;
y = tmp;
}
// specialization for int_vector_reference for int_vector == bit_vector
// special thanks to Timo Beller, who pointed out that the specialization is missing
// Same implementation as in stl_bvector.h.
template<>
class int_vector_reference<bit_vector>
{
public:
typedef bool value_type;
private:
uint64_t* const m_word;
uint64_t m_mask;
public:
//! Constructor for the reference class
/*! \param word Pointer to the corresponding 64bit word in the int_vector.
\param offset Offset to the starting bit (offset in [0..63])
*/
int_vector_reference(uint64_t* word, uint8_t offset, uint8_t):
m_word(word),m_mask(1ULL<<offset) {};
//! Assignment operator for the proxy class
int_vector_reference& operator=(bool x) {
if (x)
*m_word |= m_mask;
else
*m_word &= ~m_mask;
return *this;
};
int_vector_reference& operator=(const int_vector_reference& x) {
return *this = bool(x);
};
//! Cast the reference to a bool
operator bool()const {
return !!(*m_word & m_mask);
}
bool operator==(const int_vector_reference& x)const {
return bool(*this) == bool(x);
}
bool operator<(const int_vector_reference& x)const {
return !bool(*this) && bool(x);
}
};
// For C++11
template<>
inline void swap(int_vector_reference<bit_vector> x,
int_vector_reference<bit_vector> y)
{
// TODO: more efficient solution?
bool tmp = x;
x = y;
y = tmp;
}
// For C++11
template<>
inline void swap(bool& x,
int_vector_reference<bit_vector> y)
{
// TODO: more efficient solution?
bool tmp = x;
x = y;
y = tmp;
}
// For C++11
template<>
inline void swap(int_vector_reference<bit_vector> x,
bool& y)
{
// TODO: more efficient solution?
bool tmp = x;
x = y;
y = tmp;
}
template<class t_int_vector>
class int_vector_iterator_base: public std::iterator<std::random_access_iterator_tag, typename t_int_vector::value_type, typename t_int_vector::difference_type>
{
public:
typedef uint64_t size_type;
protected:
uint8_t m_offset;
uint8_t m_len;
public:
int_vector_iterator_base(uint8_t offset, uint8_t len):
m_offset(offset),m_len(len) {}
int_vector_iterator_base(const t_int_vector* v=nullptr, size_type idx=0):
m_offset(idx&0x3F), m_len(v==nullptr ? 0 : v->m_width) {}
};
template<class t_int_vector>
class int_vector_iterator : public int_vector_iterator_base<t_int_vector>
{
public:
typedef int_vector_reference<t_int_vector> reference;
typedef uint64_t value_type;
typedef int_vector_iterator iterator;
typedef reference* pointer;
typedef typename t_int_vector::size_type size_type;
typedef typename t_int_vector::difference_type difference_type;
friend class int_vector_const_iterator<t_int_vector>;
private:
using int_vector_iterator_base<t_int_vector>::m_offset; // make m_offset easy usable
using int_vector_iterator_base<t_int_vector>::m_len; // make m_len easy usable
typename t_int_vector::value_type* m_word;
public:
int_vector_iterator(t_int_vector* v=nullptr, size_type idx=0):
int_vector_iterator_base<t_int_vector>(v, idx),
m_word((v != nullptr) ? v->m_data + (idx>>6) : nullptr) {}
int_vector_iterator(const int_vector_iterator<t_int_vector>& it) :
int_vector_iterator_base<t_int_vector>(it), m_word(it.m_word) {
m_offset = it.m_offset;
m_len = it.m_len;
}
reference operator*() const {
return reference(m_word, m_offset, m_len);
}
//! Prefix increment of the Iterator
iterator& operator++() {
m_offset+=m_len;
if (m_offset >= 64) {
m_offset &= 0x3F;
++m_word;
}
return *this;
}
//! Postfix increment of the Iterator
iterator operator++(int) {
int_vector_iterator it = *this;
++(*this);
return it;
}
//! Prefix decrement of the Iterator
iterator& operator--() {
m_offset-=m_len;
if (m_offset >= 64) {
m_offset &= 0x3F;
--m_word;
}
return *this;
}
//! Postfix decrement of the Iterator
iterator operator--(int) {
int_vector_iterator it = *this;
--(*this);
return it;
}
iterator& operator+=(difference_type i) {
if (i<0)
return *this -= (-i);
difference_type t = i*m_len;
m_word += (t>>6);
if ((m_offset+=(t&0x3F))&~0x3F) { // if new offset is >= 64
++m_word; // add one to the word
m_offset&=0x3F; // offset = offset mod 64
}
return *this;
}
iterator& operator-=(difference_type i) {
if (i<0)
return *this += (-i);
difference_type t = i*m_len;
m_word -= (t>>6);
if ((m_offset-=(t&0x3F))&~0x3F) { // if new offset is < 0
--m_word;
m_offset&=0x3F;
}
return *this;
}
iterator& operator=(const int_vector_iterator<t_int_vector>& it) {
if (this != &it) {
m_word = it.m_word;
m_offset = it.m_offset;
m_len = it.m_len;
}
return *this;
}
iterator operator+(difference_type i) const {
iterator it = *this;
return it += i;
}
iterator operator-(difference_type i) const {
iterator it = *this;
return it -= i;
}
reference operator[](difference_type i) const {
return *(*this + i);
}
bool operator==(const int_vector_iterator& it)const {
return it.m_word == m_word && it.m_offset == m_offset;
}
bool operator!=(const int_vector_iterator& it)const {
return !(*this==it);
}
bool operator<(const int_vector_iterator& it)const {
if (m_word == it.m_word)
return m_offset < it.m_offset;
return m_word < it.m_word;
}
bool operator>(const int_vector_iterator& it)const {
if (m_word == it.m_word)
return m_offset > it.m_offset;
return m_word > it.m_word;
}
bool operator>=(const int_vector_iterator& it)const {
return !(*this < it);
}
bool operator<=(const int_vector_iterator& it)const {
return !(*this > it);
}
inline difference_type operator-(const int_vector_iterator& it) {
return (((m_word - it.m_word)<<6) + m_offset - it.m_offset) / m_len;
}
};
//template<class t_int_vector>
//void swap(const int_vector_iterator<t_int_vector> &x, const int_vector_iterator<t_int_vector> &y){
// x->swap(*y);
//}
template<class t_int_vector>
inline int_vector_iterator<t_int_vector> operator+(typename int_vector_iterator<t_int_vector>::difference_type n, const int_vector_iterator<t_int_vector>& it)
{
return it+n;
}
template<class t_int_vector>
class int_vector_const_iterator : public int_vector_iterator_base<t_int_vector>
{
public:
typedef typename t_int_vector::value_type const_reference;
typedef const typename t_int_vector::value_type* pointer;
typedef int_vector_const_iterator const_iterator;
typedef typename t_int_vector::size_type size_type;
typedef typename t_int_vector::difference_type difference_type;
template<class X>
friend typename int_vector_const_iterator<X>::difference_type
operator-(const int_vector_const_iterator<X>& x, const int_vector_const_iterator<X>& y);
friend class int_vector_iterator<t_int_vector>;
friend class int_vector_iterator_base<t_int_vector>;
private:
using int_vector_iterator_base<t_int_vector>::m_offset; // make m_offset easy usable
using int_vector_iterator_base<t_int_vector>::m_len; // make m_len easy usable
const typename t_int_vector::value_type* m_word;
public:
int_vector_const_iterator(const t_int_vector* v=nullptr, size_type idx=0):
int_vector_iterator_base<t_int_vector>(v, idx),
m_word((v != nullptr) ? v->m_data + (idx>>6) : nullptr) {}
int_vector_const_iterator(const int_vector_const_iterator& it):
int_vector_iterator_base<t_int_vector>(it), m_word(it.m_word) {
m_offset = it.m_offset;
m_len = it.m_len;
}
int_vector_const_iterator(const int_vector_iterator<t_int_vector>& it):
m_word(it.m_word) {
m_offset = it.m_offset;
m_len = it.m_len;
}
const_reference operator*() const {
if (m_offset+m_len <= 64) {
return ((*m_word)>>m_offset)&bits::lo_set[m_len];
}
return ((*m_word)>>m_offset) |
((*(m_word+1) & bits::lo_set[(m_offset+m_len)&0x3F])<<(64-m_offset));
}
//! Prefix increment of the Iterator
const_iterator& operator++() {
m_offset+=m_len;
if (m_offset >= 64) {
m_offset &= 0x3F;
++m_word;
}
return *this;
}
//! Postfix increment of the Iterator
const_iterator operator++(int) {