新手关于链表的求助
我在看书看到动态链表的有一个问题很不解。书上在建立动态链表的时候通过循环使用malloc函数开辟节点。但是插入节点的那部分函数时并没有使用malloc函数开辟节点,只是简单的是全局变量节点数n自加1。这个,为什么没有使用呢?是在n自加后会自己开辟节点吗?说不通啊,插入节点函数在建立节点函数后面啊。还是更不需要再开辟呢?基础不好,望各位不要见怪。下面是书上的开头。
#include<stdio.h>
#include<malloc.h>
#define NULL 0
#define LEN sizeof(struct student)
struct student
{long num;
flaot score
struct student *next;
};
int n;
struct student *creat(void)
{ struct student *head;
struct student *p1,*p2;
n=0;
p1=p2=(struct student *)malloc(LEN);
scanf("%ld,%lf",&p1->num,&p1->score);
head=NULL;
while(p1->!=0)
{
n=n+1;
if(n==1)head=p1;
else p2->next=p1;
p2=p1;
p1=(struct student *)malloc(LEN);
scanf("%ld,%lf",&p1->num,&p1->score);
}
p2->next=NULL;
return(head);
}
下面是插入函数。
struct student *insert(struct student *head,struct student *stud)
{
struct student *p0,*p1,*p2;
p1=head;
p0=sutd;
if(head==NULL)
{head=p0;p0->next=NULL;}
else
{
while((p0->num>p1->num)&&(p1->next!=NULL))
{
p2=p1;
p1=p1->next;
if(p0->num<=p1->num)
{
if(head==0)head=p0;
else p2->next=p0;
p0->next=p1;
}
else
{p1->next=p0;p0->next=NULL;}
n=n+1;
return(head);
}
中间省略了一部分的函数。主函数也省略了一部分。
void main()
{
struct student *head,stu;
head=creat();
scanf("%ld,%f",&stu.num,&stu.score);
head=insert(head,&stu);
}