#include
#include
struct student{
char name[20];
int score;
struct student next;
};
typedef struct student STU;
void print(STU *tail,STU *p_cur);
STU display(STU *p_cur);
void pfree(STU *tmp,STU *head);
int main()
{
STU *head,*tail,*p_cur,*tmp;
int i;
i=0;
head=(STU)malloc(sizeof(STU));
printf("please input the name");
scanf("%s",head->name);
printf("please input the score");
scanf("%d",&head->score);
head->next=NULL;
head->next=p_cur;
p_cur=head;
for(i=0;i
{
print(tail,p_cur);
}
printf("display");
p_cur=head;
display(p_cur);
pfree(tmp,head);
return 0;
}
void print(STU *tail,STU *p_cur)
{
tail=(STU*)malloc(sizeof(STU));
printf("please input the name");
scanf("%s",tail->name);
printf("please input the score");
scanf("%d",&tail->score);
tail->next=NULL;
p_cur->next=tail;
tail=p_cur;
}
STU display(STU *p_cur)
{
for(p_cur!=NULL)
{
printf("the name: %s,the score : %d",p_cur->name,p_cur->score);
p_cur=p_cur->next;
}
return *p_cur;
}
void pfree(STU *tmp,STU *head)
{
while(head->next!=NULL)
{
tmp=head->next;
head->next=tmp->next;
free(tmp);
}
free(head);
}
这个程序有毛病求解答
C语言链表问题....................
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
2条回答 默认 最新
悬赏问题
- ¥15 iis10中如何阻止别人网站重定向到我的网站
- ¥15 滑块验证码移动速度不一致问题
- ¥15 定制ai直播实时换脸软件
- ¥100 栈回溯相关,模块加载后KiExceptionDispatch无法正常回溯了
- ¥15 Utunbu中vscode下cern root工作台中写的程序root的头文件无法包含
- ¥15 麒麟V10桌面版SP1如何配置bonding
- ¥15 Marscode IDE 如何预览新建的 HTML 文件
- ¥15 K8S部署二进制集群过程中calico一直报错
- ¥15 java python或者任何一种编程语言复刻一个网页
- ¥20 如何通过代码传输视频到亚马逊平台