在C ++中嵌套for循环的单行程序

时间:2017-09-26 09:34:36

标签: c++ loops for-loop syntax translate

在Python中,我可以这样做:

>>> import itertools
>>> for i, j,  in itertools.product(range(3), repeat=2): print i, j
...
0 0
0 1
0 2
1 0
1 1
1 2
2 0
2 1
2 2

是否可以在C ++中使用易于阅读的非升级版本?

5 个答案:

答案 0 :(得分:2)

范围不可用,但基于范围的循环非常接近。

#include <iostream>
int main(){
    for (int i:{1,2,3}) { for (int j:{1,2,3}) {std::cout << i << " " << j <<std::endl;}};
}

或者如果你想使用相同的范围

#include <iostream>
int main(){
    const auto range {1,2,3};
    for (int i:range) {for (int j:range) {std::cout << i << " " << j <<std::endl;}};
}

只是为了std::for_each的乐趣(这个可能很难读,但它有no hand written loops

#include <iostream>
#include <algorithm>
int main(){
    const auto range {1,2,3};
    std::for_each(range.begin(), range.end(), [range](int i) {std::for_each(range.begin(), range.end(), [i](int j) {std::cout << i << " " << j <<std::endl; } ); } );
}

答案 1 :(得分:2)

循环示例(更新):

#include <array>
#include <iostream>
#include <utility>

template<int VRange, int VRepCount, int VValueRIndex = VRepCount> class
t_Looper
{
    public: template<typename TAction> static void
    process(::std::array<int, VRepCount> & values, TAction && action)
    {
        for(;;)
        {
            t_Looper<VRange, VRepCount, VValueRIndex - 1>::process(values, ::std::forward<TAction>(action));
            auto & value{values[VRepCount - VValueRIndex]};
            if((VRange - 1) != value)
            {
                ++value;
            }
            else
            {
                value = 0;
                break;
            }
        }
    }
};

template<int VRange, int VRepCount> class
t_Looper<VRange, VRepCount, 0>
{
    private: template<int... VIndexes, typename TAction> static void
    invoke(::std::integer_sequence<int, VIndexes...>, ::std::array<int, VRepCount> const & values, TAction && action)
    {
        action(values[VIndexes]...);
    }

    public: template<typename TAction> static void
    process(::std::array<int, VRepCount> & values, TAction && action)
    {
        invoke(::std::make_integer_sequence<int, VRepCount>(), values, ::std::forward<TAction>(action));
    }
};

template<int VRange, int VRepCount, typename TAction> void
multiloop(TAction && action)
{
    ::std::array<int, VRepCount> values{};
    t_Looper<VRange, VRepCount>::process(values, ::std::forward<TAction>(action));
}

int main()
{
    multiloop<3, 2>([](int i, int j){::std::cout << i << " " << j << ::std::endl;});
    multiloop<3, 4>([](int i, int j, int k, int l){::std::cout << i << " " << j << " " << k << " " << l << ::std::endl;});
    return(0);
}

Run this code online

答案 2 :(得分:1)

  

是否可以在C ++中使用易于阅读的非升级版本?

没有

你不能在纯C ++中做到这一点。你需要一个图书馆。

有一个Extension for ranges在C ++ 14中是实验性的,但即便如此,我也不确定是否可以实现。

答案 3 :(得分:1)

如果您不介意在这两个模板函数的帮助下创建自己的..点阵运算符:

template< int First, int Last , int Step = 1>
int ( &dotdot() )[ ( Step + Last - First ) /  Step ]
{
    static int result[ ( Step + Last - First ) /  Step ];

    for( int index = First; index <= Last; index += Step ){
        result[ ( index - First ) / Step ] = index;
    }

    return result;
}

template< int Last, int First, int Step = 1 >
int ( &dotdot() )[ ( Step + Last - First ) / Step ]
{
    static int result[ ( Step + Last - First ) / Step ];

    for( int index = Last; index >= First; index -= Step ){
        result[ ( Last - index ) / Step ] = index;
    }

    return result;
}

然后你可以:

for( int i : dotdot<0,2>() ) for( int j : dotdot<0,2>() ) std::cout << i << ' ' << j << '\n';

和输出:

0 0
0 1
0 2
1 0
1 1
1 2
2 0
2 1
2 2

用法:

  • dotdot<'a','z'>()a返回z
  • dotdot<'z','a',2>()z返回a,步骤为2
  • dotdot<-10,0>()-10返回0
  • dotdot<-10,10,3>()-10返回10,步骤为3

答案 4 :(得分:-1)

怎么样

#include <iostream>
int main(){for(int i=0;i<3;++i)for(int j=0;j<3;++j)std::cout<<i<<' '<<j<<'\n';}

这是一个品味的问题,是否比提供Python更容易或更难阅读。通常不鼓励在C ++中将所有内容塞入一行,因此大多数样式指南都会拒绝上述代码。