如何遍历 Boost Multi_index 容器的索引?
How to iterate through the indices of a Boost Multi_index container?
我有一个 boost::multi_index::multi_index_container
容器,它有六个不同的 ordered_non_unique
索引。这个想法是能够根据这六个指数对数据进行排序(作为使用多个标准对解决方案进行排名的一种方式)。
我面临的问题是在循环中检索索引。 Boost 要求我使用以下语法来获取(比如说)第 4 个索引:
const result_multi::nth_index<1>::type &legs_index = result.get<4>();
我想做的是将上面的语句放在一个在 0 到 5 之间运行的循环中,这样我就可以在所有六个索引上使用相同的代码。当然,下面的代码片段不会编译:
for (size_t i = 0; i < 5; ++i) {
const result_multi::nth_index<1>::type &index = result.get<i>();
...
... Display result sorted along the i-th index
...
}
因为get<i>
是模板,需要在编译时定义。
我怎样才能实现上述功能,而不需要重复代码 6 次?看起来 boost:preprocessor
可能有助于这样做,但我无法弄清楚如何使用它 - 任何指针将不胜感激!
编辑:我也非常感谢非 C++11 解决方案,以补充使用一个的优秀答案。 (由于非技术原因,我不得不使用旧版本的 gcc)。
您需要一些元编程来执行此操作,即将 运行-time for
替换为可以迭代 types 的编译时构造常数 0,...,5。下面显示了一个依赖 C++14 功能的非常简单的 static_for
。请注意,替换 for
主体的通用 lambda 函数传递了一个 std::integral_constant
i
,其 数值 是通过 operator()
获得的,因此,“auto& index=result.get<i()>();
”中的“i()
”。
#include <type_traits>
template<typename T,T N0,T N1,typename F>
void static_for(F f)
{
static_for<T,N0,N1>(f,std::integral_constant<bool,(N0<N1)>{});
}
template<typename T,T N0,T N1,typename F>
void static_for(F f,std::true_type)
{
f(std::integral_constant<T,N0>{});
static_for<T,N0+1,N1>(f);
}
template<typename T,T N0,T N1,typename F>
void static_for(F f,std::false_type)
{
}
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/identity.hpp>
using namespace boost::multi_index;
using result_multi=multi_index_container<
int,
indexed_by<
ordered_non_unique<identity<int>>,
ordered_non_unique<identity<int>,std::greater<int>>,
ordered_non_unique<identity<int>>,
ordered_non_unique<identity<int>,std::greater<int>>,
ordered_non_unique<identity<int>>,
ordered_non_unique<identity<int>,std::greater<int>>
>
>;
#include <iostream>
int main()
{
result_multi result={0,1,2};
static_for<int,0,6>([&](auto i){
auto& index=result.get<i()>();
std::cout<<"index #"<<i()<<": ";
for(int x:index)std::cout<<x<<" ";
std::cout<<"\n";
});
}
输出:
index #0: 0 1 2
index #1: 2 1 0
index #2: 0 1 2
index #3: 2 1 0
index #4: 0 1 2
index #5: 2 1 0
如果您不能使用 C++14,使用 Boost 向后移植到 C++03 可能如下所示:
#include <boost/type_traits/integral_constant.hpp>
template<typename T,T N0,T N1,typename F>
void static_for(F f)
{
static_for<T,N0,N1>(f,boost::integral_constant<bool,(N0<N1)>());
}
template<typename T,T N0,T N1,typename F>
void static_for(F f,boost::true_type)
{
f(boost::integral_constant<T,N0>());
static_for<T,N0+1,N1>(f);
}
template<typename T,T N0,T N1,typename F>
void static_for(F f,boost::false_type)
{
}
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/identity.hpp>
using namespace boost::multi_index;
typedef multi_index_container<
int,
indexed_by<
ordered_non_unique<identity<int> >,
ordered_non_unique<identity<int>,std::greater<int> >,
ordered_non_unique<identity<int> >,
ordered_non_unique<identity<int>,std::greater<int> >,
ordered_non_unique<identity<int> >,
ordered_non_unique<identity<int>,std::greater<int> >
>
> result_multi;
#include <iostream>
struct body
{
body(result_multi& result):result(result){}
template<typename I>
void operator()(I){
typename result_multi::nth_index<I::value>::type& index=
result.get<I::value>();
std::cout<<"index #"<<I::value<<": ";
for(typename result_multi::nth_index<I::value>::type::iterator
b=index.begin(),
e=index.end();
b!=e;++b){
std::cout<<*b<<" ";
}
std::cout<<"\n";
}
result_multi& result;
};
int main()
{
result_multi result;
for(int i=0;i<3;++i)result.insert(i);
static_for<int,0,6>(body(result));
}
这是相当丑陋的。另一种选择是使用带有 BOOST_PP_REPEAT
的预处理器。我自己不确定哪种解决方案看起来最好,但我认为我更喜欢第一种,因为它为 C++14 升级做好了更好的准备:
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/identity.hpp>
using namespace boost::multi_index;
typedef multi_index_container<
int,
indexed_by<
ordered_non_unique<identity<int> >,
ordered_non_unique<identity<int>,std::greater<int> >,
ordered_non_unique<identity<int> >,
ordered_non_unique<identity<int>,std::greater<int> >,
ordered_non_unique<identity<int> >,
ordered_non_unique<identity<int>,std::greater<int> >
>
> result_multi;
#include <boost/preprocessor/repetition/repeat.hpp>
#include <iostream>
int main()
{
result_multi result;
for(int i=0;i<3;++i)result.insert(i);
#define BODY(z,i,_) \
{ \
result_multi::nth_index<i>::type& index=result.get<i>(); \
\
std::cout<<"index #"<<i<<": "; \
for(result_multi::nth_index<i>::type::iterator \
b=index.begin(), \
e=index.end(); \
b!=e;++b){ \
std::cout<<*b<<" "; \
} \
std::cout<<"\n"; \
}
BOOST_PP_REPEAT(6,BODY,~)
#undef BODY
}
我有一个 boost::multi_index::multi_index_container
容器,它有六个不同的 ordered_non_unique
索引。这个想法是能够根据这六个指数对数据进行排序(作为使用多个标准对解决方案进行排名的一种方式)。
我面临的问题是在循环中检索索引。 Boost 要求我使用以下语法来获取(比如说)第 4 个索引:
const result_multi::nth_index<1>::type &legs_index = result.get<4>();
我想做的是将上面的语句放在一个在 0 到 5 之间运行的循环中,这样我就可以在所有六个索引上使用相同的代码。当然,下面的代码片段不会编译:
for (size_t i = 0; i < 5; ++i) {
const result_multi::nth_index<1>::type &index = result.get<i>();
...
... Display result sorted along the i-th index
...
}
因为get<i>
是模板,需要在编译时定义。
我怎样才能实现上述功能,而不需要重复代码 6 次?看起来 boost:preprocessor
可能有助于这样做,但我无法弄清楚如何使用它 - 任何指针将不胜感激!
编辑:我也非常感谢非 C++11 解决方案,以补充使用一个的优秀答案。 (由于非技术原因,我不得不使用旧版本的 gcc)。
您需要一些元编程来执行此操作,即将 运行-time for
替换为可以迭代 types 的编译时构造常数 0,...,5。下面显示了一个依赖 C++14 功能的非常简单的 static_for
。请注意,替换 for
主体的通用 lambda 函数传递了一个 std::integral_constant
i
,其 数值 是通过 operator()
获得的,因此,“auto& index=result.get<i()>();
”中的“i()
”。
#include <type_traits>
template<typename T,T N0,T N1,typename F>
void static_for(F f)
{
static_for<T,N0,N1>(f,std::integral_constant<bool,(N0<N1)>{});
}
template<typename T,T N0,T N1,typename F>
void static_for(F f,std::true_type)
{
f(std::integral_constant<T,N0>{});
static_for<T,N0+1,N1>(f);
}
template<typename T,T N0,T N1,typename F>
void static_for(F f,std::false_type)
{
}
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/identity.hpp>
using namespace boost::multi_index;
using result_multi=multi_index_container<
int,
indexed_by<
ordered_non_unique<identity<int>>,
ordered_non_unique<identity<int>,std::greater<int>>,
ordered_non_unique<identity<int>>,
ordered_non_unique<identity<int>,std::greater<int>>,
ordered_non_unique<identity<int>>,
ordered_non_unique<identity<int>,std::greater<int>>
>
>;
#include <iostream>
int main()
{
result_multi result={0,1,2};
static_for<int,0,6>([&](auto i){
auto& index=result.get<i()>();
std::cout<<"index #"<<i()<<": ";
for(int x:index)std::cout<<x<<" ";
std::cout<<"\n";
});
}
输出:
index #0: 0 1 2 index #1: 2 1 0 index #2: 0 1 2 index #3: 2 1 0 index #4: 0 1 2 index #5: 2 1 0
如果您不能使用 C++14,使用 Boost 向后移植到 C++03 可能如下所示:
#include <boost/type_traits/integral_constant.hpp>
template<typename T,T N0,T N1,typename F>
void static_for(F f)
{
static_for<T,N0,N1>(f,boost::integral_constant<bool,(N0<N1)>());
}
template<typename T,T N0,T N1,typename F>
void static_for(F f,boost::true_type)
{
f(boost::integral_constant<T,N0>());
static_for<T,N0+1,N1>(f);
}
template<typename T,T N0,T N1,typename F>
void static_for(F f,boost::false_type)
{
}
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/identity.hpp>
using namespace boost::multi_index;
typedef multi_index_container<
int,
indexed_by<
ordered_non_unique<identity<int> >,
ordered_non_unique<identity<int>,std::greater<int> >,
ordered_non_unique<identity<int> >,
ordered_non_unique<identity<int>,std::greater<int> >,
ordered_non_unique<identity<int> >,
ordered_non_unique<identity<int>,std::greater<int> >
>
> result_multi;
#include <iostream>
struct body
{
body(result_multi& result):result(result){}
template<typename I>
void operator()(I){
typename result_multi::nth_index<I::value>::type& index=
result.get<I::value>();
std::cout<<"index #"<<I::value<<": ";
for(typename result_multi::nth_index<I::value>::type::iterator
b=index.begin(),
e=index.end();
b!=e;++b){
std::cout<<*b<<" ";
}
std::cout<<"\n";
}
result_multi& result;
};
int main()
{
result_multi result;
for(int i=0;i<3;++i)result.insert(i);
static_for<int,0,6>(body(result));
}
这是相当丑陋的。另一种选择是使用带有 BOOST_PP_REPEAT
的预处理器。我自己不确定哪种解决方案看起来最好,但我认为我更喜欢第一种,因为它为 C++14 升级做好了更好的准备:
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/identity.hpp>
using namespace boost::multi_index;
typedef multi_index_container<
int,
indexed_by<
ordered_non_unique<identity<int> >,
ordered_non_unique<identity<int>,std::greater<int> >,
ordered_non_unique<identity<int> >,
ordered_non_unique<identity<int>,std::greater<int> >,
ordered_non_unique<identity<int> >,
ordered_non_unique<identity<int>,std::greater<int> >
>
> result_multi;
#include <boost/preprocessor/repetition/repeat.hpp>
#include <iostream>
int main()
{
result_multi result;
for(int i=0;i<3;++i)result.insert(i);
#define BODY(z,i,_) \
{ \
result_multi::nth_index<i>::type& index=result.get<i>(); \
\
std::cout<<"index #"<<i<<": "; \
for(result_multi::nth_index<i>::type::iterator \
b=index.begin(), \
e=index.end(); \
b!=e;++b){ \
std::cout<<*b<<" "; \
} \
std::cout<<"\n"; \
}
BOOST_PP_REPEAT(6,BODY,~)
#undef BODY
}