我想创建一个主列表,每个主列表元素都有另一个列表。
这就是我所做的
typedef struct smallList
{ char data;
struct smallList *next;
} small;
typedef struct bigList
{
int count;
char data;
struct bigList *next;
struct smallList *head;
} big;
但是我如何访问大列表中的小列表数据并将内容添加到小列表中。非常感谢任何帮助。谢谢....