这里我有一个结构:
typedef struct Memo
{
// dynamically allocated HugeInteger array to store our Fibonacci numbers
struct HugeInteger *F;
// the current length (i.e., capacity) of this array
int length;
} Memo;
这是 Memo 结构中的 HugeInteger* 结构:
typedef struct HugeInteger
{
// a dynamically allocated array to hold the digits of a huge integer
int *digits;
// the length of the array (i.e., number of digits in the huge integer)
int length;
} HugeInteger;
我的问题是如何访问 Memo 结构中 Hugeinteger 结构中的数字数组的成员?
我在整个代码中都像这样分配了所有三个:
Memo *newMemo = malloc(sizeof(Memo));
newMemo->F = malloc(sizeof(HugeInteger) * INIT_MEMO_SIZE); //in this case 44
for (i = 0; i < INIT_MEMO_SIZE; i++)
{
newMemo->F[i].digits = malloc(sizeof(int*) * 1); //creating an array of size 1 to test
newMemo->F[i].digits = NULL;
newMemo->F[i].length = 0;
}
例如,我尝试过...
newMemo->F[i].digits[0] = 1;
...这会导致分段错误。如何正确实现上述代码行?我真的觉得我在这里错过了一些重要的东西。谢谢。