Newer
Older
*
* Created on: 23. 2. 2017
* Author: Jan Travnicek
*/
#ifndef SPARSE_BOOL_VECTOR_HPP_
#define SPARSE_BOOL_VECTOR_HPP_
#include <primitive/Unsigned.h>
#include <primitive/UnsignedLong.h>
/* Canonical representation kept by all operations is in form of blocks of pairs run and word, where each word must contain at least one set bit, with exception of the last word.
* Empty sequence of bits is represented by empty list of elements and size equal to zero.
* If the size of the representation is divisible by sizeof ( unsigned ) * 8 then the last block must either be of nonzero run or its word must contain at least one set bit. This is not with contradiction with the first line.
*
* Examples:
* least significant bit
* v
* size = 32 [(0, 00000000000000000000000000000000)] is representing 32 times zero
* size = 32 [(0, 00000000000000000000000000000001)] is representing 31 times zero and one
* size = 33 [(1, 00000000000000000000000000000000)] is representing 31 times zero
* size = 64 [(0, 00000000000000000000000000000001), (0, 00000000000000000000000000000000)] is representing 31 times zero, one and 32 times zero
* */
namespace common {
class SparseBoolVector {
// --------------------------------------------------------------------------------------------------------------------------------------------------
struct element {
unsigned run;
unsigned word;
bool operator == ( const element & other ) const {
return run == other.run && word == other.word;
}
bool operator < ( const element & other ) const {
auto firstTie = std::tie ( run, word );
auto secondTie = std::tie ( other.run, other.word );
return firstTie < secondTie;
}
ext::list < element > m_Data;
static inline unsigned getMask ( size_t dist ) {
return ( ( 1u ) << dist ) - 1;
}
// --------------------------------------------------------------------------------------------------------------------------------------------------
void packData ( ) {
size_t sizeWithin = m_Size % ( sizeof ( unsigned ) * 8 );
long long sizeBlocks = m_Size / ( sizeof ( unsigned ) * 8 ) + ( bool ) sizeWithin;
unsigned mask = getMask ( sizeWithin );
// crop by size
ext::list < element >::iterator elementIter;
for ( elementIter = m_Data.begin ( ); elementIter != m_Data.end ( ); ++ elementIter ) {
sizeBlocks -= elementIter->run + 1;
if ( sizeBlocks <= 0 )
break;
}
if ( sizeBlocks == 0 ) { // sizeBlocks is negative or 0
if ( mask != 0 )
elementIter->word &= mask;
++ elementIter;
} else {
elementIter->run += sizeBlocks; //sizeBlocks is negative
elementIter->word = 0;
++ elementIter;
}
for ( ; elementIter != m_Data.end ( ); ) {
elementIter = m_Data.erase ( elementIter );
}
// erase not needed blocks
unsigned runCarry = 0;
for ( elementIter = m_Data.begin ( ); elementIter != m_Data.end ( ); ++ elementIter ) {
while ( elementIter->word == 0 && std::next ( elementIter ) != m_Data.end ( ) ) {
runCarry += elementIter->run + 1;
elementIter = m_Data.erase ( elementIter );
}
elementIter->run += runCarry;
runCarry = 0;
}
}
// --------------------------------------------------------------------------------------------------------------------------------------------------
SparseBoolVector ( ) : m_Size ( 0 ) { }
SparseBoolVector ( const ext::vector < bool > & raw ) : m_Size ( 0 ) {
for ( bool boolean : raw ) {
push_back ( boolean );
}
}
SparseBoolVector ( ext::list < element > data, size_t size ) : m_Data ( data ), m_Size ( size ) {
packData ( );
}
// --------------------------------------------------------------------------------------------------------------------------------------------------
void push_back ( bool boolean ) {
size_t sizeWithin = m_Size % ( sizeof ( unsigned ) * 8 );
if ( m_Data.size ( ) == 0 ) {
m_Data.push_back ( element { 0, 0 } );
} else if ( sizeWithin == 0 && m_Data.back ( ).word == 0 ) {
m_Data.back ( ).run += 1;
} else if ( sizeWithin == 0 && m_Data.back ( ).word != 0 ) {
m_Data.push_back ( element { 0, 0 } );
}
m_Data.back ( ).word |= boolean << sizeWithin;
m_Size += 1;
}
// --------------------------------------------------------------------------------------------------------------------------------------------------
bool operator [] ( size_t index ) const {
size_t sizeWithin = index % ( sizeof ( unsigned ) * 8 );
size_t sizeBlocks = index / ( sizeof ( unsigned ) * 8 );
ext::list < element >::const_iterator elementIter = m_Data.begin ( );
for ( ; elementIter != m_Data.end ( ); ++ elementIter ) {
if ( elementIter->run + 1 > sizeBlocks )
break;
sizeBlocks -= elementIter->run + 1;
}
if ( elementIter->run > sizeBlocks )
return false;
else
return elementIter->word & 1u << sizeWithin;
}
private:
class BitReference {
ext::list < element > & data;
ext::list < element >::iterator elementIter;
size_t sizeWithin;
size_t sizeBlocks;
public:
BitReference ( ext::list < element > & d, ext::list < element >::iterator iter, size_t within, size_t blocks ) : data ( d ), elementIter ( iter ), sizeWithin ( within ), sizeBlocks ( blocks ) {
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
}
bool operator = ( bool value ) {
if ( elementIter->run > sizeBlocks ) {
elementIter->run -= sizeBlocks + 1;
elementIter = data.insert ( elementIter, element { ( unsigned ) sizeBlocks, 0 } );
}
if ( value )
elementIter->word |= 1u << sizeWithin;
else
elementIter->word &= ~ ( 1u << sizeWithin );
return value;
}
operator bool ( ) {
if ( elementIter->run > sizeBlocks )
return false;
else
return elementIter->word & 1u << sizeWithin;
}
};
public:
BitReference operator [] ( size_t index ) {
size_t sizeWithin = index % ( sizeof ( unsigned ) * 8 );
size_t sizeBlocks = index / ( sizeof ( unsigned ) * 8 );
ext::list < element >::iterator elementIter = m_Data.begin ( );
for ( ; elementIter != m_Data.end ( ); ++ elementIter ) {
if ( elementIter->run + 1 > sizeBlocks )
break;
sizeBlocks -= elementIter->run + 1;
}
return BitReference ( m_Data, elementIter, sizeWithin, sizeBlocks );
}
// --------------------------------------------------------------------------------------------------------------------------------------------------
operator ext::vector < bool > ( ) const {
ext::vector < bool > res;
for ( const element & elem : m_Data ) {
for ( unsigned i = 0; i < elem.run ; ++i )
for ( unsigned j = 0; j < sizeof ( unsigned ) * 8; ++j )
res.push_back ( false );
for ( unsigned i = 0; i < sizeof ( unsigned ) * 8; ++i ) {
res.push_back ( elem.word & 1 << i );
}
}
res.resize ( m_Size );
return res;
}
// --------------------------------------------------------------------------------------------------------------------------------------------------
const ext::list < element > & data ( ) {
void resize ( size_t newSize ) {
if ( newSize > m_Size ) {
size_t added = ( newSize - m_Size ) / ( sizeof ( unsigned ) * 8 ) + 1;
m_Data.push_back ( element { ( unsigned ) added, 0 } );
}
size_t size ( ) const {
return m_Size;
}
const ext::list < element > & data ( ) const {
return m_Data;
}
// --------------------------------------------------------------------------------------------------------------------------------------------------
friend bool operator == ( const SparseBoolVector & first, const SparseBoolVector & second ) {
return first.m_Size == second.m_Size && first.m_Data == second.m_Data;
}
friend bool operator != ( const SparseBoolVector & first, const SparseBoolVector & second ) {
return ! ( first == second );
}
friend bool operator < ( const SparseBoolVector & first, const SparseBoolVector & second ) {
auto firstTie = ext::tie ( first.m_Size, first.m_Data );
auto secondTie = ext::tie ( second.m_Size, second.m_Data );
return firstTie < secondTie;
}
friend bool operator > ( const SparseBoolVector & first, const SparseBoolVector & second ) {
return second < first;
}
friend bool operator <= ( const SparseBoolVector & first, const SparseBoolVector & second ) {
return ! ( first > second );
}
friend bool operator >= ( const SparseBoolVector & first, const SparseBoolVector & second ) {
return ! ( first < second );
}
// --------------------------------------------------------------------------------------------------------------------------------------------------
friend SparseBoolVector & operator <<= ( SparseBoolVector & A, size_t dist ) {
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
if ( A.m_Size == 0 || dist == 0 )
return A;
size_t distBlocks = dist / ( sizeof ( unsigned ) * 8 );
size_t distWithin = dist % ( sizeof ( unsigned ) * 8 );
size_t backDist = sizeof ( unsigned ) * 8 - distWithin;
// shift by block
A.m_Data.front ( ).run += distBlocks;
if ( distWithin == 0 ) {
A.packData ( );
return A;
}
unsigned shiftedWord = 0;
for ( auto elementIter = A.m_Data.begin ( ); elementIter != A.m_Data.end ( ); ++ elementIter ) {
if ( shiftedWord != 0 && elementIter->run != 0 ) {
// shift into new block borrow from this run
elementIter->run -= 1;
elementIter = A.m_Data.insert ( elementIter, element { 0, shiftedWord } );
shiftedWord = 0;
} else {
unsigned tmp = elementIter->word >> backDist;
elementIter->word = elementIter->word << distWithin | shiftedWord;
shiftedWord = tmp;
}
}
A.packData ( );
return A;
}
friend SparseBoolVector operator << ( SparseBoolVector A, size_t dist ) {
// --------------------------------------------------------------------------------------------------------------------------------------------------
friend std::ostream & operator << ( std::ostream & out, const common::SparseBoolVector & elem ) {
out << "(" << elem.m_Size << ", " << elem.m_Data << ")";
return out;
}
friend std::ostream & operator << ( std::ostream & out, const common::SparseBoolVector::element & elem ) {
out << "(" << elem.run << ", ";
for ( unsigned i = 0; i < sizeof ( elem.word ) * 8; ++ i )
out << (bool) ( elem.word & 1 << i );
out << ")";
return out;
}
// --------------------------------------------------------------------------------------------------------------------------------------------------
class SparseBoolVectorOnesIterator {
ext::list < element >::const_iterator underlying;
ext::list < element >::const_iterator underlyingEnd;
SparseBoolVectorOnesIterator ( ext::list < element >::const_iterator iterBegin, ext::list < element >::const_iterator iterEnd, size_t ind ) : underlying ( iterBegin ), underlyingEnd ( iterEnd ), index ( ind ) {
if ( underlying == underlyingEnd ) {
return;
}
// if we have one at the exact place we are done
index = sizeof ( unsigned ) * 8 * underlying->run;
if ( underlying->word & 1u )
return;
// othervise increment to a closest one
++ * this;
}
SparseBoolVectorOnesIterator & operator ++ ( ) {
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
if ( underlying == underlyingEnd )
return *this;
// get the index within word from global index and increment both
size_t innerIndex = index % ( sizeof ( unsigned ) * 8 );
++ innerIndex;
++ index;
// if we crossed the boundary of the word increment underlying iterator
if ( innerIndex == sizeof ( unsigned ) * 8 )
++ underlying;
// if we reached the end iterator there is no next one
if ( underlying == underlyingEnd )
return *this;
// othervise skip sizeof word times the run size
if ( innerIndex == sizeof ( unsigned ) * 8 )
index += sizeof ( unsigned ) * 8 * underlying->run;
while ( true ) {
// from the current position try to find next one in the current word
for ( innerIndex = index % ( sizeof ( unsigned ) * 8 ); innerIndex < sizeof ( unsigned ) * 8; ++ innerIndex ) {
// if we have it we are done
if ( underlying->word & ( 1u << innerIndex ) )
return *this;
++ index;
}
// if we got here there was no next one in the current word, try next one
++ underlying;
// which however may not exist we could have got out of the container
if ( underlying == underlyingEnd )
return *this;
// if we didn't increase the index by sizeof word times the run size
index += sizeof ( unsigned ) * 8 * underlying->run;
}
}
SparseBoolVectorOnesIterator operator ++( int ) {
SparseBoolVectorOnesIterator tmp ( * this );
bool operator == ( const SparseBoolVectorOnesIterator & other ) const {
return underlying == underlyingEnd && other.underlying == other.underlyingEnd && underlying == other.underlying;
}
bool operator != ( const SparseBoolVectorOnesIterator & other ) const {
return ! ( *this == other );
}
size_t operator * ( ) {
return index;
}
};
SparseBoolVectorOnesIterator begin ( ) const {
return SparseBoolVectorOnesIterator ( m_Data.begin ( ), m_Data.end ( ), 0 );
SparseBoolVectorOnesIterator end ( ) const {
return SparseBoolVectorOnesIterator ( m_Data.end ( ), m_Data.end ( ), m_Size );
// --------------------------------------------------------------------------------------------------------------------------------------------------
friend SparseBoolVector & operator &= ( SparseBoolVector & A, const SparseBoolVector & B ) {
A.resize ( std::max ( A.size ( ), B.size ( ) ) );
ext::list < element >::iterator iterA = A.m_Data.begin ( );
ext::list < element >::const_iterator iterB = B.m_Data.begin ( );
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
size_t blocksA = iterA->run;
size_t blocksB = iterB->run;
while ( iterA != A.m_Data.end ( ) && iterB != B.m_Data.end ( ) ) {
if ( blocksA == blocksB ) {
iterA->word &= iterB->word;
++ iterA;
blocksA += 1 + iterA->run;
++ iterB;
blocksB += 1 + iterB->run;
} else if ( blocksA < blocksB ) {
iterA->word = 0;
++ iterA;
blocksA += 1 + iterA->run;
} else { // blockA > blockB
++ iterB;
blocksB += 1 + iterB->run;
}
}
while ( iterA != A.m_Data.end ( ) ) {
iterA->word = 0;
++ iterA;
}
A.packData();
return A;
}
friend SparseBoolVector operator & ( SparseBoolVector A, const SparseBoolVector & B ) {
A &= B;
return A;
}
struct compare < common::SparseBoolVector > {
int operator()(const common::SparseBoolVector & first, const common::SparseBoolVector & second) const {
if(first.size() < second.size()) return -1;
if(first.size() > second.size()) return 1;
static compare < unsigned > comp;
auto iterF = first.begin(), iterS = second.begin();
for(; iterF != first.end() && iterS != second.end ( ); ++iterF, ++iterS) {
int res = comp(*iterF, *iterS);
if(res != 0) return - res;
}
if ( iterF == first.end ( ) && iterS == second.end ( ) )
return 0;
if ( iterF == first.end ( ) )
return -1;
return 1;
}
};
#endif /* SPARSE_BOOL_VECTOR_HPP_ */