gpt4 book ai didi

c++ - 使用 bimap 中的键访问值

转载 作者:行者123 更新时间:2023-11-30 03:34:45 25 4
gpt4 key购买 nike

我正在尝试获取通过其键访问的值。到目前为止,我有一个我尝试过的最小示例,并且仅适用于左侧访问。

#include <string>
#include <iostream>
#include <utility>
#include <boost/bimap.hpp>
#include <boost/bimap/set_of.hpp>
#include <boost/bimap/multiset_of.hpp>

namespace bimaps = boost::bimaps;
typedef boost::bimap<bimaps::set_of<unsigned long int>,
bimaps::multiset_of<std::pair<unsigned long int, unsigned long int> > > bimap_reference;
typedef bimap_reference::value_type position;
bimap_reference numbers;

int main()
{
numbers.insert(position(123456, std::make_pair(100000,50000)));
numbers.insert(position(234567, std::make_pair(200000,80000)));
numbers.insert(position(345678, std::make_pair(300000,10000)));
numbers.insert(position(456789 ,std::make_pair(100000,60000)));


auto it = numbers.left.at(123456);
std::cout<<"numbers:"<<it.first<<"<->"<<it.second<<std::endl;
return 0;
}

当我尝试使用成对键从右侧查看以访问值时,作为跟踪,我尝试了以下操作。

auto itt = numbers.right.at({100000,50000});
auto itt = numbers.right.at(std::make_pair(100000,50000));
std::cout<<"from right: "<<itt.first<<std::endl;

> error: ‘boost::bimaps::bimap, boost::bimaps::multiset_of > >::right_map {aka class boost::bimaps::views::multimap_view, boost::bimaps::multiset_of >, mpl_::na, mpl_::na, mpl_::na> >}’ has no member named ‘at’ auto itt = numbers.right.at({100000,50000});

以上线路无效。我还想知道是否可以通过仅使用配对 key 的一个元素来获得访问权限,例如

auto itt = numbers.right.at({50000});

最佳答案

文档已包含诊断问题所需的所有内容。

首先,请注意您右 View 的类型multiset_of
如你所见here , multiset_of 的等效容器是 std::multimap而后者没有成员函数at
因此,您不能在 multiset_of 上调用 at,这是通过 .right 访问 map 的正确 View 时得到的结果。
错误也确实很明显。

您可以使用find 得到一个指向您正在寻找的对象的迭代器:

auto itt = numbers.right.find(std::make_pair(100000,50000));
std::cout<<"from right: "<<itt->first.first <<std::endl;

好吧,根据 .end() 检查它可能是个好主意。

不,您不能使用半键作为参数进行搜索。如果你想做那样的事情,你应该使用像 map 这样的东西,其中键是你的对的第一个元素,值是这些对的列表或一些其他非常适合你的实际问题的数据结构。
对于 bimap 绝对(几乎)不可行,它不值得。

关于c++ - 使用 bimap 中的键访问值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41844614/

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