我有以下 mpl 序列
boost::mpl::vector_c<std::size_t, 0, 1, 2, 0, 1, 0>
我需要根据以下算法(运行时版本)对其进行转换:
i=0
output_sequence=[]
for k in (0,...,len(input_sequence)-1):
if input_sequence[k] == 0:
output_sequence.append(i)
i=i+1
else:
output_sequence.append(-1)
在我的情况下,结果应该是:
boost::mpl::vector_c<std::size_t, 0, -1, -1, 1, -1, 2>
我可以想象至少有两种方法可以在运行时使用 std::transform 或 std::accumulate 实现这一点,但不知道如何在编译时使用 mpl 实现相同的结果。对我来说主要问题是以某种方式存储状态“i”(当前找到的零数)以及输出序列。
非常感谢!
添加
根据HighCommander4的回答,我想与大家分享采用的方法。实际上,可以boost::mpl::fold
与自定义元函数一起使用。与 HighCommander4 相比,唯一的概念变化是将当前可用的空闲索引打包为增长的输出序列的第一个元素。可以在类型计算结束时使用 删除它boost::mpl::pop_font
。
#include <boost/mpl/size_t.hpp>
#include <boost/mpl/equal_to.hpp>
#include <boost/mpl/fold.hpp>
#include <boost/mpl/front.hpp>
#include <boost/mpl/push_front.hpp>
#include <boost/mpl/push_back.hpp>
#include <boost/mpl/pop_front.hpp>
#include <boost/mpl/vector_c.hpp>
#include <boost/mpl/if.hpp>
#include <boost/mpl/at.hpp>
#include <boost/mpl/print.hpp>
namespace mpl=boost::mpl;
struct assign_index
{
enum { dim_dynamic, dim_static };
template<typename Output, typename Index,
typename Enable = typename mpl::if_<
mpl::equal_to<Index, mpl::size_t<1> >,
mpl::size_t<dim_dynamic>,
mpl::size_t<dim_static> >::type>
struct apply
{
typedef typename mpl::push_back<Output, mpl::size_t<-1> >::type type;
};
template<typename Output, typename Index>
struct apply <Output, Index, mpl::size_t<dim_dynamic> >
{
typedef typename mpl::front<Output>::type current;
typedef typename mpl::next<current>::type next;
typedef typename mpl::push_back<Output, current>::type append_type;
typedef typename mpl::push_front<
typename mpl::pop_front<append_type>::type,next
>::type type;
};
};
template<class input_sequence>
struct map_indices
{
// The first element of state0 keeps track of the current index count.
typedef mpl::vector_c<std::size_t, 0> state0;
typedef typename mpl::fold<input_sequence, state0, assign_index>::type output_sequence;
// Remove the first element from the final output sequence
typedef typename mpl::pop_front<output_sequence>::type type;
};
int main (int argc, const char** argv)
{
typedef mpl::vector_c<std::size_t, 1, 2, 3, 1, 2, 1> input_sequence;
typedef map_indices<input_sequence>::type output_sequence;
int i;
i=mpl::print<mpl::at_c<output_sequence, 0>::type>();
i=mpl::print<mpl::at_c<output_sequence, 1>::type>();
i=mpl::print<mpl::at_c<output_sequence, 2>::type>();
i=mpl::print<mpl::at_c<output_sequence, 3>::type>();
i=mpl::print<mpl::at_c<output_sequence, 4>::type>();
i=mpl::print<mpl::at_c<output_sequence, 5>::type>();
return 0;
}
PS:在这个实现中,输入序列中的“1”被转换为递增索引,而大于 1 的值被转换为 std::size_t(-1)。输入序列中不允许有零(在别处检查)。
PS2:我已经检查过,确实没有工具boost::mpl
可以将任意mpl
序列(作为算法结果获得的序列)转换回boost::mpl::vector
. 因此也有必要为此编写代码......我最终调整了代码
<boost/fusion/container/vector/detail/as_vector.hpp>
对类型计算结果进行“规范化”。
再次感谢你!