指针问题:?! 高手都来
/*******************************************************************
** HighlightCodeV3.2 software by yzfy(雨中飞燕) http:// **
*******************************************************************/
#include <stdio.h>
#include <malloc.h>
typedef struct linknode
{
int date;
struct linknode *next;
}node;
//建立单链表
node *creatlist()
{
node *head,*r,*s;
int x;
if (! ( head=(node *)malloc(sizeof(node)) ))
printf("malloc error");
r=head;
printf("输入系列整数,以0标志结束\n");
scanf("%d",&x);
while ( x != 0){
if (! ( s=(node *)malloc(sizeof(node)) ))
printf("malloc error");
s->date=x;
r->next=s;
r=s;
scanf("%d",&x);
}
r->next=NULL;
s=head;//删除头结点
head=head->next;
free(s);
return head;
}
//显示链表信息
void printLinknode(node *head)
{
node *p;
p=head;
while (p!=NULL){
printf("%d ",p->date);
p=p->next;
}
}
//完成A-B的运算,即在A中查找出B中的元素并删除,显示这个结果
void subs()
{
node *p,*p1,*p2,*q,*heada,*headb;
heada=creatlist();
headb=creatlist();
p=heada;
p1=p;
while (p!=NULL){
q=headb;
while( ( q->date != p->date ) && q != NULL)/*就是这里编译出现错误了!?*/
q=q->next;
if (q != NULL)
{
if (p == heada)
{
heada=heada->next;
p=heada;
}
else if (p->next == NULL)
p1->next=NULL;
else
p1->next=p->next;
p2=p->next;
p->next=NULL;
free(p);
p=p2;
}
else
{
p1=p;
p=p->next;
}
}
p=heada;
if (p==NULL)
printf("两集合相减的结果为空.\n");
else
printf("两集合相减的结果: .\n");
while (p!=NULL){
printf("%d",p->date);
p=p->next;
}
}
}
int main(void)
{
subs();
return 0;
}
** HighlightCodeV3.2 software by yzfy(雨中飞燕) http:// **
*******************************************************************/
#include <stdio.h>
#include <malloc.h>
typedef struct linknode
{
int date;
struct linknode *next;
}node;
//建立单链表
node *creatlist()
{
node *head,*r,*s;
int x;
if (! ( head=(node *)malloc(sizeof(node)) ))
printf("malloc error");
r=head;
printf("输入系列整数,以0标志结束\n");
scanf("%d",&x);
while ( x != 0){
if (! ( s=(node *)malloc(sizeof(node)) ))
printf("malloc error");
s->date=x;
r->next=s;
r=s;
scanf("%d",&x);
}
r->next=NULL;
s=head;//删除头结点
head=head->next;
free(s);
return head;
}
//显示链表信息
void printLinknode(node *head)
{
node *p;
p=head;
while (p!=NULL){
printf("%d ",p->date);
p=p->next;
}
}
//完成A-B的运算,即在A中查找出B中的元素并删除,显示这个结果
void subs()
{
node *p,*p1,*p2,*q,*heada,*headb;
heada=creatlist();
headb=creatlist();
p=heada;
p1=p;
while (p!=NULL){
q=headb;
while( ( q->date != p->date ) && q != NULL)/*就是这里编译出现错误了!?*/
q=q->next;
if (q != NULL)
{
if (p == heada)
{
heada=heada->next;
p=heada;
}
else if (p->next == NULL)
p1->next=NULL;
else
p1->next=p->next;
p2=p->next;
p->next=NULL;
free(p);
p=p2;
}
else
{
p1=p;
p=p->next;
}
}
p=heada;
if (p==NULL)
printf("两集合相减的结果为空.\n");
else
printf("两集合相减的结果: .\n");
while (p!=NULL){
printf("%d",p->date);
p=p->next;
}
}
}
int main(void)
{
subs();
return 0;
}
比如,a{1,2,3,4}; b{2,3}; subs为 a-b{1,4};
我在VC上编译的,用调试结果是那个错误的地方,q为NULL,不明白。。。。。
[[it] 本帖最后由 rookie_coder 于 2008-7-31 18:31 编辑 [/it]]