multi_index_container

转自:https://blog.csdn.net/buptman1/article/details/38657807

multi_index_container:

Boost Multi-index Containers Library定义了multi_index_container模板类,可以从不同的维度建索引、排序和存取。

 

 

如上图,容器multi_index_container分别从shape,number和sequenced(默认插入的顺序)三个维度对元素进行管理。

 

#include <string>
#include <iostream>
#include <boost/multi_index_container.hpp> #include <boost/multi_index/member.hpp> #include <boost/multi_index/ordered_index.hpp> using namespace boost; using namespace boost::multi_index; using namespace std; struct Employee{ int id; string name; int age; Employee(int id_,std::string name_,int age_):id(id_),name(name_),age(age_){} friend std::ostream& operator<<(std::ostream& os,const Employee& e) { os<<e.id<<" "<<e.name<<" "<<e.age<<std::endl; return os; } }; typedef multi_index_container< Employee, indexed_by< ordered_unique<member<Employee, int, &Employee::id> >, ordered_non_unique<member<Employee, string, &Employee::name> >, ordered_non_unique<member<Employee, int, &Employee::age> > > > EmployeeContainer; typedef EmployeeContainer::nth_index<0>::type IdIndex; typedef EmployeeContainer::nth_index<1>::type NameIndex; typedef EmployeeContainer::nth_index<2>::type AgeIndex; int main(){ EmployeeContainer con; con.insert(Employee(0,"Joe",31)); con.insert(Employee(1,"Robert",27)); con.insert(Employee(2,"John",40)); IdIndex& ids = con.get<0>(); copy(ids.begin(),ids.end(), ostream_iterator<Employee>(cout)); cout << endl; NameIndex& names = con.get<1>(); copy(names.begin(), names.end(), ostream_iterator<Employee>(cout)); cout << endl; names.erase(names.begin()); AgeIndex& ages = con.get<2>(); copy(ages.begin(), ages.end(), ostream_iterator<Employee>(cout)); cout << endl; return 0; }
#include "boost/multi_index_container.hpp"
#include "boost/multi_index/member.hpp"
#include "boost/multi_index/ordered_index.hpp" using boost::multi_index_container; using namespace boost::multi_index; struct stu_num{}; // 索引-学号 struct stu_name{}; // 索引-姓名 struct stu_age{}; // 索引-年龄 typedef boost::multi_index_container< Student, indexed_by< ordered_unique< // 学号是唯一值的索引 tag<stu_num>, BOOST_MULTI_INDEX_MEMBER(Student,unsigned int,stu_num)>, // 姓名是非唯一值的索引 ordered_non_unique< tag<stu_name>,BOOST_MULTI_INDEX_MEMBER(Student,std::string,stu_name)>, // 年龄是非唯一值的索引 ordered_non_unique< tag<stu_age>, BOOST_MULTI_INDEX_MEMBER(Student,unsigned int,stu_age)> > > StudentContainer;

	// 用名字作为索引
	StudentContainer::index<stu_name>::type& indexOfName = studentsets.get<stu_name>();

	// 查找名叫李四的人
	StudentContainer::index<stu_name>::type::iterator it = indexOfName.find("李四");

	// 找到了?
	if( it != indexOfName.end() ) { // it就是一个Student序列的迭代器,现在你可以 // 像普通迭代器一样操作它了,比如cout << *it }


	// 用名字作为索引
	StudentContainer::index<stu_name>::type& indexOfName = studentsets.get<stu_name>();


	// 查找名叫张三的人的下界
	StudentContainer::index<stu_name>::type::iterator itL = indexOfName.lower_bound("张三");

	// 查找名叫张三的人的上界
	StudentContainer::index<stu_name>::type::iterator itU = indexOfName.upper_bound("张三"); // 遍历输出所有名叫“张三”的学生信息 while(itL != itU) { std::cout << *itL; ++itL; }
 
 

转载于:https://www.cnblogs.com/lehoho/p/9374624.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
【为什么还需要学习C++?】 你是否接触很多语言,但从来没有了解过编程语言的本质?你是否想成为一名资深开发人员,想开发别人做不了的高性能程序?你是否经常想要窥探大型企业级开发工程的思路,但苦于没有基础只能望洋兴叹? 那么C++就是你个人能力提升,职业之路进阶的不二之选。【课程特色】 1.课程共19大章节,239课时内容,涵盖数据结构、函数、类、指针、标准库全部知识体系。2.带你从知识与思想的层面从0构建C++知识框架,分析大型项目实践思路,为你打下坚实的基础。3.李宁老师结合4大国外顶级C++著作的精华为大家推出的《征服C++11》课程。【学完后我将达到什么水平?】 1.对C++的各个知识能够熟练配置、开发、部署;2.吊打一切关于C++的笔试面试题;3.面向物联网的“嵌入式”和面向大型化的“分布式”开发,掌握职业钥匙,把握行业先机。【面向人群】 1.希望一站式快速入门的C++初学者; 2.希望快速学习 C++、掌握编程要义、修炼内功的开发者; 3.有志于挑战更高级的开发项目,成为资深开发的工程师。 【课程设计】 本课程包含3大模块基础篇本篇主要讲解c++的基础概念,包含数据类型、运算符等基本语法,数组、指针、字符串等基本词法,循环、函数、类等基本句法等。进阶篇本篇主要讲解编程中常用的一些技能,包含类的高级技术、类的继承、编译链接和命名空间等。提升篇:本篇可以帮助学员更加高效的进行c++开发,其中包含类型转换、文件操作、异常处理、代码重用等内容。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值