- 论坛徽章:
- 0
|
#include <stdio.h>
#include <stdlib.h>
typedef struct QNode{
int date;
struct QNode *next;
}qnode,*queueptr;
typedef struct{
queueptr front;
queueptr rear;
}linkqueue;
linkqueue s;
queueptr p;
void initqueue()
{
s.front=s.rear=(queueptr)malloc(sizeof(qnode));
if(!s.front) printf("内存分配失败!");
s.front->next=NULL;
}
void enqueue(int i)
{
p=(queueptr)malloc(sizeof(qnode));
if(!p) printf("内存分配失败!");
p->date=i; p->next=NULL;
s.rear->next=p;
s.rear=p;
}
int dequeue()
{
int e;
p=s.front->next;
e=p->date;
s.front->next=p->next;
if (s.rear==p) s.rear=s.front;
free(p);
return(e);
}
void output()
{
queueptr q;
q=s.front->next;
while (q!=NULL)
{
printf("%6d",q->date);
q=q->next;
}
printf("\n");
}
void main()
{
int i,a,e;
initqueue();
while (1)
{
printf("\n请选择操作:\n1:病人排队候诊\n2:队头病人出队就诊\n3:队中剩余病人依次就诊\n");
fflush(stdin);
scanf("%d",&a);
switch(a){
case 1:
printf("请输入病人的病历号:\n");
scanf("%d",&i);
printf("病历号为%d的病人排队\n",i);
enqueue(i);
printf("队内病人为:");
output();
break;
case 2:
e=dequeue();
printf("病历号为%d的病人就诊\n",e);
printf("队内病人为:");
output();
break;
case 3:
while(s.rear!=s.front)
{
e=dequeue();
printf("病历号为%d的病人就诊",e);
}
printf("下班了!");
break;
}
}
}
问题:第三选项为什么不能实现:
病历号为 xx 的病人就诊
病历号为 xx 的病人就诊
下班了!
[ 本帖最后由 LK.QQ 于 2009-4-14 09:16 编辑 ] |
|