gpt4 book ai didi

c++ - 当 2D bitset 存储为 1D 时 XOR bitset

转载 作者:行者123 更新时间:2023-11-30 03:36:19 30 4
gpt4 key购买 nike

回答How to store binary data when you only care about speed? ,我正在尝试写一些做比较,所以我想使用 std::bitset。但是,为了公平比较,我想要一个 1D std::bitset 来模拟 2D。

所以与其拥有:

bitset<3> b1(string("010"));
bitset<3> b2(string("111"));

我想使用:

bitset<2 * 3> b1(string("010111"));

优化数据局部性。但是,现在我遇到了 How should I store and compute Hamming distance between binary codes? 的问题,如我的最小示例所示:

#include <vector>
#include <iostream>
#include <random>
#include <cmath>
#include <numeric>
#include <bitset>

int main()
{
const int N = 1000000;
const int D = 100;
unsigned int hamming_dist[N] = {0};
std::bitset<D> q;
for(int i = 0; i < D; ++i)
q[i] = 1;

std::bitset<N * D> v;
for(int i = 0; i < N; ++i)
for(int j = 0; j < D; ++j)
v[j + i * D] = 1;


for(int i = 0; i < N; ++i)
hamming_dist[i] += (v[i * D] ^ q).count();

std::cout << "hamming_distance = " << hamming_dist[0] << "\n";

return 0;
}

错误:

Georgioss-MacBook-Pro:bit gsamaras$ g++ -Wall bitset.cpp -o bitset
bitset.cpp:24:32: error: invalid operands to binary expression ('reference' (aka
'__bit_reference<std::__1::__bitset<1562500, 100000000> >') and
'std::bitset<D>')
hamming_dist[i] += (v[i * D] ^ q).count();
~~~~~~~~ ^ ~
/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/bitset:1096:1: note:
candidate template ignored: could not match 'bitset' against
'__bit_reference'
operator^(const bitset<_Size>& __x, const bitset<_Size>& __y) _NOEXCEPT
^
1 error generated.

发生这种情况是因为它不知道何时停止!如何让它在处理完 D 位后停止?


我的意思是不使用 2D .

最佳答案

问题是 v[i * D]访问一位。在您的二维位数组的概念模型中,它访问行 i 的位和列 0 .

所以 v[i * D]boolqstd::bitset<D> ,并且应用于这些的按位逻辑 XOR 运算符 ( ^) 没有意义。

如果v用于表示大小为 D 的二进制 vector 序列, 你应该使用 std::vector<std::bitset<D>>反而。另外,std::bitset<N>::set()将所有位设置为 1 .

#include <vector>
#include <iostream>
#include <random>
#include <cmath>
#include <numeric>
#include <bitset>

int main()
{
const int N = 1000000;
const int D = 100;

std::vector<std::size_t> hamming_dist(N);

std::bitset<D> q;
q.set();

std::vector<std::bitset<D>> v(N);
for (int i = 0; i < N; ++i)
{
v[i].set();
}

for (int i = 0; i < N; ++i)
{
hamming_dist[i] = (v[i] ^ q).count();
}

std::cout << "hamming_distance = " << hamming_dist[0] << "\n";

return 0;
}

关于c++ - 当 2D bitset 存储为 1D 时 XOR bitset,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40787731/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com