所以我想做的是有一个列表数组,这是我的代码:
typedef struct stackList{
List * list;
} stack;
int main(){
int x;
stack ** stackTable;
for(x=0;x<100;x++)
stackTable[x]=malloc(sizeof(stack*)*100);
}
我在 for 循环中遇到分段错误,我会假设我尝试使用该结构的方式是错误的。我宁愿在结构的定义中使用 List ** list; 或者有没有办法像我尝试使用它一样使用它