最佳答案
我写 C 的时间不长,所以我不确定我应该如何做这些递归的事情... ... 我希望每个单元格包含另一个单元格,但是我得到了一个错误,类似于“ field‘ child’has not type”。怎么了?
typedef struct Cell {
int isParent;
Cell child;
} Cell;