标题:菜鸟提问:关于单链表的删除问题
只看楼主
网痘
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-9-22
 问题点数:0 回复次数:1 
菜鸟提问:关于单链表的删除问题

#include "alloc.h"
#include "stdio.h"
struct node
{int data;
struct node *next;
};
int a;int b;int j=0;
main()
{int data;
struct node *head;
struct node *p,*q,*s,*h,*m;
head=(struct node *)malloc(sizeof(struct node));
clrscr();
printf("please input a number:");
scanf("%d",&head->data);
p=head;
q=head;
while(p->data!=-999)
{printf("\nplease input the next number or end with -999.");
p=(struct node *)malloc(sizeof(struct node));
scanf("%d",&p->data);
q->next=p;
q=p;
}
q->next=NULL;
p=head;
while(p->next!=NULL)
{printf("%d",p->data);
p=p->next;
}
getch();

printf("\nplease input a:");
scanf("%d",&a);
printf("\nplease input b:");
scanf("%d",&b);

while(s->next && (s->data<a||s->data>b))
{s=head,m=head;
m=s;s=s->next;}

while(s->next && a<s->data && s->data<b )


{h=m->next;m->next=h->next;free(h);
s=m->next;

}
m=head;
while(m->next!=NULL)
{printf("%d",m->data);m=m->next;}

}
这是个单链表的删除问题,可是为什么我的程序从循环开始的时候不执行?

搜索更多相关主题的帖子: 单链 提问 删除 
2007-11-06 09:40
网痘
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-9-22
得分:0 
自己解决了。。。
2007-11-06 10:44



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-183831-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.218160 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved