本文整理汇总了C++中BitSet::debug_print方法的典型用法代码示例。如果您正苦于以下问题:C++ BitSet::debug_print方法的具体用法?C++ BitSet::debug_print怎么用?C++ BitSet::debug_print使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BitSet
的用法示例。
在下文中一共展示了BitSet::debug_print方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main(const int argc, const char** argv) {
BitSet<24, char> bitset;
bitset.set(14);
std::cout << bitset.get(14) << "\n";
bitset.debug_print();
const size_t test_indices[] = {
26, 155, 95, 9, 3, 183, 154, 130, 102, 103, 105, 19,
161, 190, 61, 162, 183, 11, 3, 88, 18, 155, 169, 73,
59, 58, 0, 105, 191, 140, 191, 91, 3, 4, 139, 176, 176,
180, 168, 16, 143, 96, 77, 38, 178, 189, 118, 109, 138,
69, 110, 102, 66, 85, 32, 190, 76, 66, 86, 40, 35, 104,
101, 89, 124, 27, 125, 46, 134, 96, 93, 161, 178, 83, 114,
128, 8, 55, 108, 167, 11, 184, 74, 164, 169, 101, 140, 31,
120, 167, 190, 85, 158, 118, 19, 63, 175, 155, 80, 58
};
for (const auto& test_idx: test_indices) {
bitset.set(test_idx);
bool ans = bitset.get(test_idx);
if (!ans) {
throw std::runtime_error("Failed test");
}
}
bitset.debug_print();
}