优化地图上的初始化:转发密钥



我有一个问题应该很有趣。我想在构造时std::unordered_map"向前初始化"一个项目。

这些是细节。我有一个从std::string到自定义类prop的哈希映射,在我的梦中,它会初始化一个成员变量,计算传递给std::unordered_map::operator[]的字符串的哈希。

这是我编写的一个方便的代码,但我不知道从哪里开始。

为什么会有这个麻烦?因为我想避免类似"如果字符串不在容器中计算哈希;用prop做事"。避免这种if可能会影响我的表现。因此,当映射在容器中添加新项时,构造函数以及哈希将仅执行一次。那就太好了。

有什么提示吗?

谢谢和干杯!

#include <iostream>
#include <string>
#include <unordered_map>
class prop
{
public:
    prop(std::string s = "") : s_(s), hash_(std::hash<std::string>()(s))
    {
        // Automagically forwarding the string in the unordered_map...
    };
    std::string s_;
    std::size_t hash_;
    int x;
};
int main(int argc, const char * argv[])
{
    // Forward the std::string to the prop constructor... but how?
    std::unordered_map<std::string, prop> map;
    map["ABC"].x = 1;
    map["DEF"].x = 2;
    map["GHI"].x = 3;
    map["GHI"].x = 9; // This should not call the constructor: the hash is there already
    std::cout << map["ABC"].x << " : " << map["ABC"].s_ << " : " << map["ABC"].hash_ << std::endl;
    std::cout << map["DEF"].x << " : " << map["DEF"].s_ << " : " << map["DEF"].hash_ << std::endl;
    std::cout << map["GHI"].x << " : " << map["GHI"].s_ << " : " << map["GHI"].hash_ << std::endl;
    std::cout << map["XXX"].x << " : " << map["XXX"].s_ << " : " << map["XXX"].hash_ << std::endl;
    return 0;
}

只需使用您的 prop 类作为键,而不是字符串:

#include <iostream>
#include <string>
#include <unordered_map>
class prop
{
public:
    prop(std::string s = "") : s_(s), hash_(std::hash<std::string>()(s))
    {
        // Automagically forwarding the string in the unordered_map...
    };
    std::string s_;
    std::size_t hash_;
};
int main(int argc, const char * argv[])
{
    // Forward the std::string to the prop constructor... but how?
    std::unordered_map<prop, int, ...> map( ... );
    prop pABC( "ABC" ), pDEF( "DEF" ), pGHI( "GHI" );
    map[pABC] = 1;
    map[pDEF] = 2;
    map[pGHI] = 3;
    map[pGHI] = 9; 
    std::cout << map[pABC] << " : " << pABC.s_ << " : " << pABC.hash_ << std::endl;
    std::cout << map[pDEF] << " : " << pDEF.s_ << " : " << pDEF.hash_ << std::endl;
    std::cout << map[pGHI] << " : " << pGHI.s_ << " : " << pGHI.hash_ << std::endl;
    prop pXXX( "XXX" );
    std::cout << map[pXXX] << " : " << pXXX.s_ << " : " << pXXX.hash_ << std::endl;
    return 0;
}

我省略了自定义哈希和比较函数,没有它的想法应该很清楚。

最新更新