例如,您可以创建一个包含所有索引 ID 的向量,因此在每个递归中,您在调用递归函数之前将索引添加到列表中,然后在之后将其从列表中删除。
然而,在这里放弃递归的想法可能是一个更好的主意,而是使用迭代技术来查看所有排列。这是一个任意的概念证明,它应该会给你一些想法:
#include <stdio.h>
const unsigned int dimensions = 3;
const unsigned int dimension_size[dimensions] = { 2, 4, 3 };
// Get first permutation.
inline void get_first_permutation( unsigned int * const permutation )
{
for ( int i = 0; i < dimensions; ++i )
permutation[i] = 0;
}
// Returns false when there are no more permutations.
inline bool next_permutation( unsigned int * const permutation )
{
int on_index = dimensions - 1;
while ( on_index >= 0 )
{
if ( permutation[on_index] >= dimension_size[on_index] )
{
permutation[on_index] = 0;
--on_index;
}
else
{
++permutation[on_index];
return true;
}
}
return false;
}
// Print out a permutation.
void print_permutation( const unsigned int * const permutation )
{
printf( "[" );
for ( int i = 0; i < dimensions; ++i )
printf( "%4d", permutation[i] );
printf( "]\n" );
}
int main( int argc, char ** argv )
{
// Get first permutation.
unsigned int permutation[dimensions];
get_first_permutation( permutation );
// Print all permutations.
bool more_permutations = true;
while ( more_permutations )
{
print_permutation( permutation );
more_permutations = next_permutation( permutation );
}
return 0;
}
当然,这是假设您确实需要知道索引。如果您只是想更新所有计数器,您可以从索引 0 循环到索引dim_0*dim_1*...*dim_n
/* Defined somewhere. Don't know how this gets allocated but what-evs. :) */
unsigned int dimensions = 5;
unsigned int dimension_length = { 1, 2, 4, 7, 6 };
int * int_array = ...
/* Your loop code. */
unsigned int array_length = 0;
for ( unsigned int d = 0; d < dimensions; ++d )
array_length += dimension_length[d];
int *array_pointer = int_array;
for ( unsigned int i = 0; i < array_length; ++i, ++array_pointer )
array_pointer = counter++;