unordered-set

unordered-set

文章 0 浏览 5

无序集的编译问题

我正在尝试使用 C++ std 库中的 unordered_set 。我正在使用 std 命名空间。 using namespace std; unordered_set 在我的函数内。我想用它来记住一些…

黑寡妇 2025-01-01 23:53:02 1 0

std::unordered_set;作为 Foo 类的成员

我正在编写一个类,该类具有自己类型的 unordered_set 作为成员。 因此我需要为 hash 编写一个专门化的版本。这个特化需要在声明 Foo 之后定义。但在…

诺曦 2024-12-25 17:39:46 5 0

如何将 std::hash::operator() 专门化为无序容器中的用户定义类型?

支持 std::unordered_set 和 std::unordered_map 中用户定义的键类型 必须提供 operator==(Key, Key) 和一个哈希函子: struct X { int id; /* ... */…

深者入戏 2024-12-15 16:46:58 2 0

标准容器没有 std::hash 的专门化吗?

我只是发现自己有点惊讶无法简单地使用 a, std::unordered_set > test; 因为似乎没有针对 std::array 的 std::hash 专门化。这是为什么?或者我根本…

你的呼吸 2024-12-14 02:56:10 3 0

unordered_set:指针地址是一个好的哈希吗?

我想在哈希集中存储一组(智能)指针,。经过 10 秒钟的思考,我想出了这个哈希函数: typedef boost::shared_ptr ref_t; struct SharedPtrHash : pub…

始终不够 2024-12-11 02:39:36 4 0

获取 unordered_set 中最右边的元素(或反向打印内容)

我有一个 unordered_set 如下: unordered_set valueSet; /*the following insertion is done in order (from 1 to 10000), *unordered_set will keep…

楠木可依 2024-12-08 17:49:32 5 0

将元素存储在 unordered_set 中与将它们存储在 unordered_map 中

假设我有以下 User 结构: struct User { string userId; UserType userType; // UserType is just an enumeration string hostName; string ipAddres…

你在看孤独的风景 2024-12-08 10:52:08 4 0

std::hash_set 与 std::unordered_set,它们是同一件事吗?

我知道 hash_set 是非标准的,而 unordered_set 是标准的。但是,我想知道,就性能而言,两者之间有什么区别?为什么它们单独存在?…

余厌 2024-12-07 14:13:00 4 0

BOOST :: UNOREDED_MAP-需要为哈希std :: set< int'指定自定义哈希功能?

我想使用 boost :: unordered_map< key,value> ,其中 key 是 std :: set&lt< int> 。由于一组整数不是内置类型,所以我以为我必须…

世俗缘 2024-12-05 06:41:05 3 0

unordered_map / unordered_set 中元组的通用哈希

为什么 std::unordered_map, string> 不只是 开箱即用? 必须为 tuple 定义哈希函数是很乏味的,例如 template> { size_t operator()(std::tuple cons…

故事还在继续 2024-11-30 01:32:32 4 0

size_t:运算符? (以及使用 unordered_set 的方法)

什么是 operator size_t () const 环境:Visual Studio 2010 Professional TL; DR 今天我正在寻找一种使用 std::tr1::unordered_set 的方法。因为我询…

子栖 2024-11-18 22:39:28 5 0

无序集(const char)比无序集(字符串)慢得多

我正在将一个很长的列表从磁盘加载到一个 unordered_set 中。如果我使用一组字符串,速度会非常快。大约 7 MB 的测试列表在大约 1 秒内加载。然而,使…

听不够的曲调 2024-11-18 05:30:54 5 0

C++:shared_ptr 作为 unordered_set 的键

考虑下面的代码 #include #include #include int main() { boost::unordered_set s; s.insert(5); s.insert(5); // s.size() == 1 boost::unordered_s…

厌味 2024-11-16 10:23:07 8 0

boost/unordered_set: mingw () 编译错误

我有一段使用boost的unordered_set的代码, #include boost::unordered_set mySet(100); 它可以在unix下与gcc编译并正常工作。当我尝试使用 mingw32 (…

青春有你 2024-11-15 08:11:39 5 0

提升无序集不起作用

我是新手,要加强。我正在尝试实现 boost::unorder_set。这是代码: struct point { int x; int y;}; bool operator==(point const& p1, point const&…

夏了南城 2024-11-09 06:27:21 6 0
更多

推荐作者

忆悲凉

文章 0 评论 0

hgfg1645

文章 0 评论 0

qq_qLPLYi

文章 0 评论 0

戏舞

文章 0 评论 0

殊姿

文章 0 评论 0

﹂绝世的画

文章 0 评论 0

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