链表常用内容和易犯错误
Posted congmingyige
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了链表常用内容和易犯错误相关的知识,希望对你有一定的参考价值。
1.创建链表中没有分配空间
for (i=1;i<=n;i++)
{
//遗漏,从而使链表的每一个数据的地址都一样
s=(struct node *) malloc (sizeof(struct node));
scanf("%ld",&s->data);
s->next=p;
p=s;
}
2.对指针赋值为空后又对指针的内容进行赋值
struct node
{
long data;
struct node *next;
}*p;
p=(struct node *) malloc (sizeof(struct node));
p=NULL;
p->data=1;//错误
3.释放指针后又对指针进行操作
free(p);
p->data=1;//错误
以上是关于链表常用内容和易犯错误的主要内容,如果未能解决你的问题,请参考以下文章