C语言中,定义了Node类型,但是在分配内存的时候mallc()函数返回NULL,是哪里错的?
#defineTSIZE45structfilm{chartitle[TSIZE];intrating;};typedefstructfilmItem;typedefst...
#define TSIZE 45
struct film{
char title[TSIZE];
int rating;
};
typedef struct film Item;
typedef struct node{
Item item;
struct node*next;
}Node;
typedef Node*List;
//创建存储的节点,并将其添加到由plist指向的链表末尾
bool AddItem(Item item,List*plist)
{
Node*pnew;
Node *scan=*plist;
pnew=(Node*) malloc(sizeof(Node));
if(pnew==NULL);
return false; //这里返回false,为什么分配失败呢?????
CopyToNode(item,pnew);
pnew->next=NULL;
if(scan==NULL)
*plist=pnew;
else
{
while(scan->next!=NULL)
scan=scan->next;
scan->next=pnew;
}
return true;
} 展开
struct film{
char title[TSIZE];
int rating;
};
typedef struct film Item;
typedef struct node{
Item item;
struct node*next;
}Node;
typedef Node*List;
//创建存储的节点,并将其添加到由plist指向的链表末尾
bool AddItem(Item item,List*plist)
{
Node*pnew;
Node *scan=*plist;
pnew=(Node*) malloc(sizeof(Node));
if(pnew==NULL);
return false; //这里返回false,为什么分配失败呢?????
CopyToNode(item,pnew);
pnew->next=NULL;
if(scan==NULL)
*plist=pnew;
else
{
while(scan->next!=NULL)
scan=scan->next;
scan->next=pnew;
}
return true;
} 展开
1个回答
2017-08-27
展开全部
判断是否已分配内存可以测试指针是否为空,不为空则为已分配,具体可以使用sizeof函数。1、假设使用c语言的动态分配内存函数malloc为指针p分配1000个int型的空间int*p;p=(int*)malloc(1000*sizeof(int));//分配内存if(!p){//判断是否为空printf("内存未分配,指针为空!“);exit(0);}printf("内存已分配");
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询