如何按值遍历地图

发布于 2024-12-20 14:19:43 字数 316 浏览 0 评论 0原文

假设有一个映射: typedef map; MyMap;

我想通过字符串遍历它,例如:

3 -> a
1 -> b
7 -> b
2 -> c

一种方法是按其值对该地图进行排序。但恐怕这会影响 find() 的效率(这是真的吗?)

另一种选择是使用 boost::bimap。但是,您可能会注意到,MyMap 中的值不是唯一的,因此 bimap 在这里不适用。

有没有好的办法呢?

Say there is a map: typedef map<int, string> MyMap;

I'd like to traverse it by the string, for example:

3 -> a
1 -> b
7 -> b
2 -> c

One way is to sort this map by its value. But I'm afraid this will have impact to find() efficiency (is it true?)

Another choice is to use boost::bimap. But, as you might notice, the value in MyMap is not unique, so bimap is not applicable here.

Is there a good way to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅浅 2024-12-27 14:19:43

我找到了在 boost.bimap 中使用多个值的解决方案: multiset_of

数据定义更改为:

#include <boost/bimap/multiset_of.hpp>
typedef boost::bimap<int, boost::bimaps::multiset_of<std::string> > MyMap;

现在我可以通过键或值遍历我的数据。

I found a solution to use multiple values in boost.bimap: multiset_of

The data definition changed to:

#include <boost/bimap/multiset_of.hpp>
typedef boost::bimap<int, boost::bimaps::multiset_of<std::string> > MyMap;

Now I can traverse my data by either key or value.

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