c语言:这个为什么会陷入死循环,求大神解释,修改

#include<stdio.h>#include<stdlib.h>structnode{intdate;structnode*next;}*head;intmain(... #include <stdio.h>
#include <stdlib.h>
struct node
{
int date;
struct node *next;
} *head;
int main()
{
struct node *p,*r,*q;
int n;
head=(struct node *)malloc(sizeof(struct node));
head->next=NULL; //建立一个头结点。
p=(struct node *)malloc(sizeof(struct node));
p=head;
scanf("%d",&n);
while(n--)
{
r=(struct node *)malloc(sizeof(struct node));
scanf("%d",&r->date);
p->next=r;
r->next=NULL;
p=r;
}
p=head;
head->next->next=NULL;
while(p!=NULL)
{
q=p->next;
q->next=p;
p=q;
if(p->next!=NULL)
q=q->next;
}

while(p!=NULL)
{
printf("%d",p->date);
if(p->next!=NULL)
printf(" ");
p=p->next;
}
return 0;
}
展开
 我来答
匿名用户
2014-07-31
展开全部
你这死循环在这里
while(p!=NULL)
{
q=p->next;
q->next=p;
p=q;
if(p->next!=NULL)
q=q->next;
}
q=p->next;
q->next=p;

等价于p->next->next=p

这导致p指针始终在两个结构体间循环,p!=NULL

你这代码有点酒驾的感觉,到处乱撞O(∩_∩)O~~
追问
怎么改啊,大神
fastfs
2014-07-31 · TA获得超过1423个赞
知道大有可为答主
回答量:2659
采纳率:62%
帮助的人:805万
展开全部
你能不能作个注释啊,能力有限看着晕。
head=(struct node *)malloc(sizeof(struct node));
head->next=NULL; //建立一个头结点。
p=(struct node *)malloc(sizeof(struct node));
p=head;
这几行是什么意思,P本身分配了一块内存,又给他赋新值。
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式