本文整理汇总了C++中Bitset::setBitsetValue方法的典型用法代码示例。如果您正苦于以下问题:C++ Bitset::setBitsetValue方法的具体用法?C++ Bitset::setBitsetValue怎么用?C++ Bitset::setBitsetValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Bitset
的用法示例。
在下文中一共展示了Bitset::setBitsetValue方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: getBitsetbyKey
Bitset* Journal::getBitsetbyKey(unsigned key, uint64_t start_tid, uint64_t end_tid)
{
DArray<unsigned>* offsets = key_htable.getHashRecords(key, start_tid, end_tid);
unsigned start_offset, end_offset, i;
if(offsets == NULL)
return NULL;
#if TID_HASHTABLE == 1
while((start_offset = tidSearchRecord(start_tid)) == -1) // psakse se pio index tou Journal tha ksekinisw na psaxnw
start_tid += 1; // an den yparxei to tid pou mou dwse san start psakse to epomeno
while((end_offset = tidSearchRecord(end_tid)) == -1)
end_tid -= 1;
#else
while((start_offset = searchRecord(start_tid)) == -1) // psakse se pio index tou Journal tha ksekinisw na psaxnw
start_tid += 1; // an den yparxei to tid pou mou dwse san start psakse to epomeno
while((end_offset = searchRecord(end_tid)) == -1)
end_tid -= 1;
#endif
int rsize = Records->size();
for (i = end_offset; i < rsize; i++)
{
uint64_t tid = (Records->get(i))->getTransactionId();
if (tid > end_tid) // an exw kseperasei to end_tid
break;
}
end_offset = i;
Bitset* bit = new Bitset((end_offset - start_offset)/8 + 1);
for(i = 0; i < offsets->size(); i++)
{
bit->setBitsetValue(offsets->get(i) - start_offset);
}
delete offsets;
return bit;
}