unordered-map

unordered-map

文章 0 浏览 3

使用 C++0x 的 unordered_map

我正在使用 unordered_map ,它包含为: #include 程序编译如下: g++ Test.cc -std=gnu++0x -o 测试 我使用的是TR1 的unordered_map 还是C++0x 的uno…

〃温暖了心ぐ 2024-11-06 13:19:20 0 0

在 C++ 中预分配存储桶std::unordered_map

我正在使用 gnu++0x 中的 std::unordered_map 来存储大量数据。我想为大量元素预先分配空间,因为我可以限制所使用的总空间。 我希望能够做的是调用:…

变身佩奇 2024-11-05 12:33:06 0 0

使用 unordered_sets 的 unordered_map

如果我有一个由字符串索引的 unordered_sets 的无序映射,例如 static boost::unordered_map&ltstd::string, boost::unordered_set&ltstd::string&gt …

ι不睡觉的鱼゛ 2024-11-05 09:15:34 0 0

C++ std::tr1::unordered_map 中的相等性

std::tr1::unordered_map 遗漏相等(==)运算符是否有原因, std::map 存在哪个? 实现这个的好方法是什么?我正在考虑创建两组 unordered_map::value…

も让我眼熟你 2024-11-02 22:23:29 0 0

对象作为无序映射的键

我在将类的对象作为键放入无序映射中时遇到问题 这是一个简单的例子: class first { string name public: first(){} first(string nam):name(nam){} …

黯淡〆 2024-11-02 05:19:07 1 0

C++如何将方法作为模板参数传递

假设我有一个类 X: class X { // ... size_t hash() const { return ... } } 我想创建一个 std::tr1::unordered_map 我想传入的地方 X::hash() 为 Ha…

梦毁影碎の 2024-10-31 17:35:54 2 0

在结构体中的 TR1 unordered_map 中定义哈希函数

根据此,可以在 TR1 unordered_map 中定义一个相等函数,如下所示: #include &lttr1/unordered_map&gt using namespace std using namespace std::tr…

娜些时光,永不杰束 2024-10-25 22:14:38 1 0

为什么 Visual Studio 找不到 'tr1/unordered_map?

我想在项目中使用 google-ctemplate 。但是,如果我包含基本文件,则会出现以下错误(使用 Visual Studio C++ 2005): Error 1 fatal error C1083: C…

葵雨 2024-10-21 14:17:37 5 0

为什么 map 比 unordered_map 快得多?

我实现了一个搜索缓存结果,其中包含 State 类型的键(一个包含 7 个短整数的类)和 Score 类型的值(一个包含 3 个双精度数的类)。使用 unordered_m…

浮光之海 2024-10-15 07:23:05 7 0

覆盖 new 但告诉 unordered_map 不要使用它

我正在为 C/C++ 编写一个垃圾收集器作为编程练习,其中一部分涉及全局重写 new。然而,垃圾收集器还使用一个unordered_map(来存储指向已分配块的指针…

朕就是辣么酷 2024-10-08 05:26:59 4 0

在 C++0x 标准中会有 unordered_map,这与 boosts unordered_map 相比如何?

哪个更有效率?有什么好的基准吗?…

冷情 2024-10-06 18:59:29 4 0

用 Boost.Bimap 替换向量和哈希表

我希望用 boost 替换 vector 和 boost::unordered_map 将字符串映射到前者的索引: :bimap。 我应该使用什么bimap实例化?到目前为止,我已经想出了 …

孤独岁月 2024-10-02 22:17:12 3 0

如何使用 boost::unordered_map

对于我的应用程序,我需要使用哈希映射,因此我编写了一个测试程序,其中将基类的一些实例存储在 boost::unordered_map 中。但我想通过调用返回基类的…

ぃ弥猫深巷。 2024-09-28 14:08:29 3 0

c++ g++ 的 unordered_map 编译问题

我在 Ubuntu 中使用 g++ g++(Ubuntu 4.4.3-4ubuntu5)4.4.3 以下代码 #include&ltunordered_map&gt using namespace std bool ifunique(char *s){ un…

我三岁 2024-09-28 13:01:16 15 0

在 std::map 和 std::unordered_map 之间进行选择

现在 std 在 unordered_map 中有一个真正的哈希映射,为什么(或何时)我仍然想使用旧的 map 而不是 &gtunordered_map 在它实际存在的系统上?是否有…

鱼窥荷 2024-09-26 13:18:12 4 0
更多

推荐作者

1CH1MKgiKxn9p

文章 0 评论 0

ゞ记忆︶ㄣ

文章 0 评论 0

JackDx

文章 0 评论 0

信远

文章 0 评论 0

yaoduoduo1995

文章 0 评论 0

霞映澄塘

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文