gpt4 book ai didi

c++ - 创建一个 2d unordered_map C++

转载 作者:太空宇宙 更新时间:2023-11-04 11:28:43 24 4
gpt4 key购买 nike

我正在尝试实现一个 2D unordered_map,如下所示:

std::unordered_map<std::string, std::unordered_map<std::string, double>>

首先,我通过以下方式实现了内部 unordered_graph:

std::unordered_map<std::string, std::unordered_map<std::string, double> *inner = new  
std::unordered_map<std::string, std::unordered_map<std::string, double>>()
inner->insert(std::make_pair("X", 0));

然后,我尝试通过以下方式制作外部 unordered_map

std::unordered_map<std::string, std::unordered_map<std::string, double> *outer =   
std::unordered_map<std::string, std::unordered_map<std::string, double>>()
outer->insert("X", inner);

但它给了我一个错误,说 no matching function for call to insert

最佳答案

你在这里使用的 insert 是错误的:

outer->insert("X", inner);

它需要一个 value_type 即 std::pair。您传递的是两个参数而不是一个,因此您需要对这些参数执行 make_pair(),此外您还需要传递一个值,因此 *inner 而不是 inner 这是一个指针。

一旦这一切都说完了,您可能会更好地使用不同的数据结构,因为哈希表的哈希表通常不是最有效的。

关于c++ - 创建一个 2d unordered_map C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25698409/

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