gpt4 book ai didi

c++ - 如何为 std::vector> 编写哈希函数

转载 作者:搜寻专家 更新时间:2023-10-31 01:39:47 25 4
gpt4 key购买 nike

我有一个结构,它有一个变量,一个 std::vector<std::vector<bool>>代表一个网格。如果网格相等,或者网格的任何旋转相等,则这些结构之一等于另一个。我正在尝试使用 unordered_set要存储其中的许多,但是,经过一些研究,我发现我需要某种哈希函数。我以前从未使用过散列函数,我发现的有关它的内容让我感到困惑。所以,我的问题是,我如何/什么是为这种数据类型编写哈希函数的最佳方法,还是只使用一组无序的网格并在我添加它们时测试旋转更好?

一些代码:

int nx, ny;

typedef std::vector<std::vector<bool>> grid;

struct rotateableGrid {
public:
grid data;
rotateableGrid(grid data) : data(data) {}
rotateableGrid(rotateableGrid &rg) : data(rg.data) {}
bool operator==(const rotateableGrid & rhs) {
for (int c = 0; c < 4; c++) {
if (rotate(c) == rhs.data) return true;
}
return false;
}
private:
grid rotate(int amt) {
if (amt % 4 == 0) return data;

grid ret(ny, std::vector<bool>(nx));

for (int x = 0; x < nx; x++) {
for (int y = 0; y < ny; y++) {
switch (amt % 4) {
case 1:
if (x < ny && nx - 1 - y >= 0) ret[x][nx - 1 - y] = data[y][x];
break;
case 2:
if (nx - 1 - x >= 0 && ny - 1 - y >= 0) ret[ny - 1 - y][nx - 1 - x] = data[y][x];
break;
case 3:
if (ny - 1 - x >= 0 && y < nx) ret[x][nx - 1 - y] = data[y][x];
break;
default:
break;
}
}
}

return ret;
}
};

提前致谢!

注意:我在 VS 2013 中使用 C++

最佳答案

您可以做的是组合矩阵中所有 vector 的哈希值。 std::hash 过载对于 std::vector<bool> .如果你尝试这样的事情

size_t hash_vector(const std::vector< std::vector<bool> >& in, size_t seed)
{
size_t size = in.size();
std::hash< std::vector<bool> > hasher;
for (size_t i = 0; i < size; i++)
{
//Combine the hash of the current vector with the hashes of the previous ones
seed ^= hasher(in[i]) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
}
return seed;
}

为了获得旋转不变性,您需要组合网格所有旋转的哈希值。正如@zch 在评论中所建议的,您可以这样做

size_t hash_grid(rotateableGrid& in, size_t seed = 92821)
// ^^^^^ Should be const, but rotate isn't marked const
{
return hash_vector(in.data) ^ hash_vector(in.rotate(1).data) ^ hash_vector(in.rotate(2).data) ^ hash_vector(in.rotate(3).data);
}

但是,因为 rotateableGrid 的轮换成员标记为私有(private),您必须声明 hash_grid作为rotateableGrid的 friend .为此,您必须将其添加到 rotateableGrid 的定义中

friend size_t hash_grid(rotateableGrid&, size_t);

关于c++ - 如何为 std::vector<std::vector<bool>> 编写哈希函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30684331/

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