boost容器bimap简单使用

本文介绍Boost库中的bimap容器,它扩展了C++标准库的映射容器功能,支持双向映射,并通过左右视图展示数据。文章包含一个示例程序,演示如何使用bimap进行数据插入和遍历。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

    C++标准提供了map和multi_map,把key映射到value;
    但是这种映射是单向的,只能是key到value,不能反过来;
    boost.bimap扩展了标准库映射型容器,提供双向映射能力,功能强大;
    bimap提供的映射关系有两个视图:左视图和右视图;
    更多详细用法请参考《Boost程序库完全开发指南》

 

 C++ Code 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
 
/* boost_bimap.cpp
    C++标准提供了map和multi_map,把key映射到value;
    但是这种映射是单向的,只能是key到value,不能反过来;
    boost.bimap扩展了标准库映射型容器,提供双向映射能力,功能强大;
    bimap提供的映射关系有两个视图:左视图和右视图;
    更多详细用法请参考《Boost程序库完全开发指南》
*/


#include <iostream>
#include <string>
#include <vector>
#include <cassert>

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

using namespace std;
using namespace boost;

template<class T>  
void print_map(T &m)  
{   
    
for (BOOST_AUTO(pos, m.begin()); pos!=m.end(); ++pos)  
    {  
        cout << pos->first << 
"--------" << pos->second << endl;  
    }  
}  

int main(void)
{
    bimap<
int, string> bm;

    bm.left.insert(make_pair(
1"Zhang"));
    bm.left.insert(make_pair(
2"Wang"));

    
for(BOOST_AUTO(pos, bm.left.begin()); 
        pos != bm.left.end();
        ++pos)
    {
        cout << 
"Left[" << pos->first << "]=" << pos->second << endl; 
    }

    bm.right.insert(make_pair(
"Li"23));
    bm.right.insert(make_pair(
"Sun"24));

    
for(BOOST_AUTO(pos, bm.left.begin()); 
        pos != bm.left.end();
        ++pos)
    {
        cout << 
"Right[" << pos->first << "]=" << pos->second << endl; 
    }

    print_map(bm.left);
    print_map(bm.right);

    cin.get();
    
return 0;
}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值