如果我在 C 中有一个如下定义的数组:
int B[d1][d2][d3][d4][d5][d6][d7][d8][d9];
然后很容易将“B”转换为一维。但是如果我在 C 中有一个数组,它的定义如下:
int********* A;
//which will be allocated as follows for example
A = (int*********) malloc(N*sizeof(int********));
for(int i=0; i<N; i++)
{
//differentSizes will be distinct for every "i"
//the same distinctness of sizes will be for every other
//inner parts of all inner for loops
compute(&differentSizes);
A[i] = (int********) malloc(differentSizes*sizeof(int*******));
for(...)
{
...
}
}
其中“A”对于每个维度都有非常大的大小,并且对于“A”的所有内部数组/子数组来说它们都是不同的。
我的问题:有没有一种有效的方法将“A”转换为一维?如果可能的话,你能举一个简单的例子吗?谢谢!