赋值的函数有些复杂但是应该可以调试成功的啊,机房的电脑可以运行,自己的电脑就通过不了,不理解,请教了,谢谢
我又发现了些问题,可以运行,但是不正常啊,但是没有输值就过去了
#define NULL 0
typedef int ElemType;
typedef struct node
{ElemType data;
struct node *next;
}qlink;
typedef struct
{qlink *front;
qlink *rear;
}linkqueue;
void initqueue(linkqueue *new)
{new->front=new->rear=(qlink *)malloc(sizeof(qlink));
new->rear->next=NULL;
}
linkqueue newqueue(linkqueue *new,int n) /*应该是 linkqueue *newqueue(linkqueue *new,int n)*/
{qlink *p;
int i;
if(n<1) return NULL;
p=(qlink *)malloc(sizeof(qlink));
scanf("%d",&p->data);
new->front=p;
p=p->next;n--;
if(n>0)
{for(i=1;i<n;i++)
{scanf("%d",&p->data);
p=p->next;
}
scanf("%d",&p->data);
new->rear=p;
return new;
}
else
return new;
}
void print(linkqueue *new)
{qlink *p;
p=new->front;
whlie(p!=NULL)
{printf("%d",p->data);p=p->next;}
printf("\n");
}
main()
{linkqueue *new;
initqueue(new);
newqueue(new,3);
print(new);
}
[此贴子已经被作者于2007-11-5 21:45:19编辑过]