假设我有 2 个结构。
typedef struct name{
char*name;
struct test *next;
}name_t;
typedef struct test {
int grade;
int studentNumber;
struct test *next;
}test_t;
所以标记有一个指向测试的指针我将如何创建链接列表?
我试过这个
name_t *marker1 = malloc(sizeof(name_t));
// added name from another function
test_t *temp= malloc(sizeof(test_t));
// add the grade and student number from another function
if(marker1->next==NULL)
marker1->next=temp;
但它给了我错误
我将如何解决这个问题?这是我第一次编码链表,所以任何帮助将不胜感激
编辑:我也将以下内容变成了一个函数
void test(name_t* marker1,int data)
{
test_t *temp= malloc(sizeof(test_t));
test_t *location=NULL;
temp->grade=data;
temp->next=NULL;
location=marker1->next;
if(location==NULL)
{
// printf("%i \n",temp->grade);
marker1->next=temp;
}
else
{
while(location!=NULL)
{
printf("%i \n",location->grade);
printf("%p \n",location->next);
location=location->next;
}
location=temp;
}
}
由于某种原因,它似乎没有通过列表。为什么?