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;
} 展开
#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~~
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~~
追问
怎么改啊,大神
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询