gpt4 book ai didi

c++ - 如何在 C++ 中查找 hash_map?

转载 作者:太空宇宙 更新时间:2023-11-04 14:58:50 25 4
gpt4 key购买 nike

这是我所拥有的,我是 C++ 的新手,所以我不确定这是否正确...

typedef pair<string, int>:: make_pair;
hash_map <string, int> dict;
dict.insert(make_pair("apple", 5));

我想给我的hash_map "apple",我想返回5.我该怎么做?

最佳答案

hash_map不是标准的 C++,所以您应该查看您正在使用的任何库的文档(或者至少告诉我们它的名称),但很可能这会起作用:

hash_map<string, int>::iterator i = dict.find("apple");

if (i == dict.end()) { /* Not found */ }
else { /* i->first will contain "apple", i->second will contain 5 */ }

或者,如果您确定 "apple"dict ,你也可以这样做:dict["apple"] .例如cout << dict["apple"];将打印出 5.

此外,为什么在代码中使用 typedef?你不能只使用 std::make_pair ?而且,它不会按照您编写的方式进行编译(使用两个前导冒号)

关于c++ - 如何在 C++ 中查找 hash_map?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1949470/

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