Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2342219
  • 博文数量: 816
  • 博客积分: 10000
  • 博客等级: 上将
  • 技术积分: 5010
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-17 17:57
文章分类

全部博文(816)

文章存档

2011年(1)

2008年(815)

分类:

2008-12-17 18:01:55

麻烦高手帮忙改一下感激不尽
#include
#define null 0
using namespace std;
struct qnode
{
int data;
qnode *next;
}linkqlist;
struct linkqueue
{
linkqlist *front;
linkqlist *rear;
};
void create(linkqueue *p)
{
p->front=new qnode;
p->rear=p->front;
p->font->next=null;
}
int enqueue(linkqueue *p,int e)
{
p->rear->next=new qnode;
p->rear=p->rear->next;
p->rear->data=e;
p->rear->next=null;
}
void display(linkqueue *p)
{
linkqueue *q;
q=p->front->next;
cout<<"show the linklist!!"<<'\t';
if(p->front==p->rear)
cout<<"the linklist is empty!";
else
{
while(q)
{
cout<data;
q=q->next;
}
}

cout<}
void main(linkqueue *head)
{
int n,a,k;
cout<<"create a linkqueue"< create(head);
cout<<"enter the linklist lenght!";
    cin>>n;
cout< for(int i=1;i<=n;i++)
{
cin>>a;
enqueue(head,a);
}
display(head);
cout<<"inserter the number!";
cin>>k;
enqueue(head,k);
display(head);
}











--------------------next---------------------

阅读(1033) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~