c++ 如何从静态列表构造Boost bimap?

axr492tv  于 2023-02-17  发布在  其他
关注(0)|答案(4)|浏览(143)

我有一个像这样的双Map:

using MyBimap = boost::bimaps::bimap<
    boost::bimaps::unordered_set_of<A>,
    boost::bimaps::unordered_set_of<B>>;

我想从一个静态初始化器列表构造它,就像std::map一样:

MyBimap map{{a1, b1}, {a2, b2}, {a3, b3}};

不幸的是,由于bimap不支持初始化器列表,所以它不起作用,所以我尝试了一种变通方法。Boost的文档列出了以下构造函数:

bimap();

 template< class InputIterator >
 bimap(InputIterator first,InputIterator last);

 bimap(const bimap &);

所以我试了第二个,像这样:

std::vector<std::pair<A,B>> v{{a1, b1}, {a2, b2}, {a3, b3}};
MyBimap map(v.begin(), v.end());

它也不起作用,文档没有明确说明这个构造函数需要什么样的迭代器,但显然它不仅仅是std::pair<A, B>对象的迭代器,那么这个构造函数需要什么样的bimap呢?

elcex8rz

elcex8rz1#

我使用下面的"工厂函数",它接受一个带括号的初始化器列表,并返回一个boost::bimap

template <typename L, typename R>
boost::bimap<L, R>
make_bimap(std::initializer_list<typename boost::bimap<L, R>::value_type> list)
{
    return boost::bimap<L, R>(list.begin(), list.end());
}

用法:

auto my_bimap = make_bimap<int, int>({{1, 2}, {3, 4}, {5, 6}});
dfuffjeb

dfuffjeb2#

C++初学者在这里:可以使用boost::assign来生成初始化,我找到了这个解决方案here
示例:

#include <boost/bimap.hpp>
#include <boost/assign.hpp>

//declare the type of bimap we want
typedef boost::bimap<int, std::string> bimapType;
//init our bimap
bimapType bimap = boost::assign::list_of< bimapType::relation >
( 1, "one"   )
( 2, "two"   )
( 3, "three" );

//test if everything works
int main(int argc, char **argv)
{
    std::cout << bimap.left.find(1)->second << std::endl;
    std::cout << bimap.left.find(2)->second << std::endl;
    std::cout << bimap.left.find(3)->second << std::endl;
    std::cout << bimap.right.find("one")->second << std::endl;
    std::cout << bimap.right.find("two")->second << std::endl;
    std::cout << bimap.right.find("three")->second << std::endl;

    /* Output:
     * one
     * two
     * three
     * 1
     * 2
     * 3
     */
}
omjgkv6w

omjgkv6w3#

迭代器的开始/结束应该是针对一个双Map值序列的。
boost::bimap< A, B>::value_type
bimap值很像std::pair,可以用{a1, b1}语法初始化,它们的向量也可以工作,为构造函数提供可用的迭代器。
好了,下面是一个为我编译和运行的示例(gcc 4.8.2 --std=c++11)

#include <vector>
#include <boost/bimap.hpp>

using namespace std;
int main() {
    typedef boost::bimap< int, int > MyBimap;

    std::vector<MyBimap::value_type > v{{1, 2}, {3, 4}, {5, 6}};

    MyBimap M(v.begin(),v.end());

    std::cout << "The size is " << M.size()
              << std::endl;

    std::cout << "An entry is 1:" << M.left.at(1)
              << std::endl;
}
3wabscal

3wabscal4#

这就留下了一个需要清理的向量,在某些情况下这可能是一个问题。这里有一个简短的helper类,它也可以解决你的问题。由于类示例是临时的,无论在哪里使用它,它都会立即被清理。这是基于https://stackoverflow.com/a/1730798/3103767

// helper for bimap init (simple, lightweight version of boost::assign)
template <typename T, typename U>
class create_bimap
{
    typedef boost::bimap< T, U > bimap_type;
    typedef typename bimap_type::value_type value_type;
private:
    boost::bimap<T, U> m_map;
public:
    create_bimap(const T& left, const U& right)
    {
        m_map.insert( value_type(left, right) );
    }

    create_bimap<T, U>& operator()(const T& left, const U& right)
    {
        m_map.insert( value_type(left, right) );
        return *this;
    }

    operator boost::bimap<T, U>()
    {
        return m_map;
    }
};

使用如下:

boost::bimap<string,int> myMap = create_bimap<string,int>
    ("c",1)
    ("b",2)
    ("a",3);

相关问题