我正在阅读斯蒂芬·普拉塔(Stephen Prata)的“ c引物加”。链接列表有示例程序。该程序使用malloc为结构数组分配内存空间,该示例程序的代码如下。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define TSIZE 45
struct film{
char title[TSIZE];
int rating;
struct film * next;
};
char * s_gets(char * st,int n);
int main(void)
{
struct film * head =NULL;
struct film * prev, * current;
char input[TSIZE];
puts("Enter first movie title:");
while(s_gets(input,TSIZE)!=NULL && input[0]!='\0')
{
current=(struct film *)malloc(sizeof(struct film));
if(head==NULL)
head=current;
else
prev->next=current;
current->next=NULL;
strcpy(current->title,input);
puts("Enter your rating <0-10>:");
scanf("%d",¤t->rating);
while(getchar()!='\n')
continue;
puts("Enter next movie title (empty line to stop):");
prev=current;
}
if(head==NULL)
printf("No data entered.\n");
else
printf("Here is the movie list:\n");
current=head;
while(current!=NULL)
{
printf("Movie: %s Rating: %d\n",current->title,current->rating);
current=current->next;
}
current=head;
while(current!=NULL)
{
free(current);
current=current->next;
}
printf("Bye!\n");
return 0;
}
char * s_gets(char * st,int n)
{
char * ret_val;
char * find;
if((ret_val=fgets(st,n,stdin)))
{
if((find=strchr(st,'\n'))!=NULL)
*find='\0';
else
while(getchar()!='\n')
continue;
}
return ret_val;
}
我的困惑来自于没有内存的代码。电流被释放
free(current);
为什么以下几行可以生效? current=current->next;
由于释放了当前电流,因此该行应该无法访问当前成员“下一个”。
期待您的帮助。
非常感谢。
答案 0 :(得分:5)
执行此操作
while(current!=NULL)
{
free(current);
current=current->next;
}
您使current
指针悬空并尝试访问current=current->next;
,这将导致未定义的行为。
我建议您按照以下方式释放。
同样,您的current
指针将指向NULL
,因为您已循环到列表的末尾,然后进入了free while循环。
current=head;
while(current!=NULL)
{
struct film * temp = current;
current=current->next;
free(temp);
}
答案 1 :(得分:-1)
免费(当前); 不会清除当前@的任何内存,只是将其返回给内存池,因此它可以重用,不清除内存,因此它将继续包含相同的数据 更好的做法是添加 current = NULL; 就在
之后