gpt4 book ai didi

c++ - 指定哈希函数时在 unordered_map<> 中使用默认桶计数

转载 作者:行者123 更新时间:2023-12-01 14:07:02 25 4
gpt4 key购买 nike

我正在使用 unordered_map<> 并且很好奇,当将哈希函数指定为第二个参数时(根据下面的代码)size_type n必须将桶计数指定为构造函数中的第一个参数。我已经阅读了应该使用的默认存储桶计数。有谁知道在使用自己的哈希函数时如何使用默认的桶计数参数?
有趣的是,Stroustrup C++ 4th Ed Page 918 构造了一个 unordered_set<> 而不使用存储桶大小,并且不同意记录的构造函数参数。

explicit unordered_map ( size_type n = /* see below */,
const hasher& hf = hasher(),
const key_equal& eql = key_equal(),
const allocator_type& alloc = allocator_type() );
用法示例:
#include <unordered_map>
#include <functional>
#include <iostream>
using namespace std;

struct X {
X(string n) : name{n} {}
string name;
bool operator==(const X& b0) const { return name == b0.name; }
};

namespace std {
template<>
struct hash<X> {
size_t operator()(const X&) const;
};
size_t hash<X>::operator()(const X& a) const
{
cout << a.name << endl;
return hash<string>{}(a.name);
}
}

size_t hashX(const X& a)
{
return hash<string>{}(a.name);
}

int main()
{
// unordered_map<X,int,hash<X>> m(100, hash<X>{});
// unordered_map<X,int,function<size_t(const X&)>> m(100, &hashX);
unordered_map<X,int,size_t(*)(const X&)> m(100, &hashX);
X x{"abc"};
m[x] = 1;
int i = m[x];
cout << i << endl;
}

最佳答案

好像我们可以访问bucket_count值(value)。我只会在您的环境中运行以下代码并检查它为您提供的值。

#include <iostream>
#include <unordered_map>

int main() {
std::unordered_map<int, int> m;
std::cout << m.bucket_count() << std::endl;
return 0;
}
这输出 1在ideone中

关于c++ - 指定哈希函数时在 unordered_map<> 中使用默认桶计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63179462/

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