将struct中的位置分配给变量(或指针)

时间:2014-01-14 00:12:37

标签: c pointers struct

我的结构看起来像这样:

struct Node
{
    int value;
    struct Node *children[26];
};

typedef struct Node *List;

我想将第一个(主要)结构分配给变量(或指针),以便我可以回到它(在移动到'substructs'之后)。即

start = malloc(sizeof(struct Node));
(this variable) = start;
list = (this variable);
list = list -> children[25];
...
list = (this variable) //We're again in main/first struct.

1 个答案:

答案 0 :(得分:1)

所以...。为什么你不能说:

List start = malloc(whatever);
List list = start;
list = list->children[25]; // index 26 is out of bounds…

您不确定是否可以声明List类型的问题?