什么是boost bimap中的最大条目数

时间:2017-06-29 05:29:03

标签: c++ boost-bimap

我正在尝试创建一个总共1.77亿条目的boost bimap。我创建了boost bimap

namespace bimaps = boost::bimaps;
typedef boost::bimap<bimaps::unordered_set_of<unsigned long long int>,
        bimaps::unordered_multiset_of<unsigned long long int> > bimap_reference;
typedef bimap_reference::value_type position;
bimap_reference reference_index_vector;

并输入了元素但是当它达到1亿,66,000个条目时它停止输入元素。我想知道是否有boost bimap的最大限制,或者可能存在其他问题。

0 个答案:

没有答案