没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
#include<iostream>
#include<ctime>
#include<time.h>
#include<windows.h>
#include<string>
using namespace std;
const int m=100;
char stick[m];//定义存储数组存储病人
//-------------------------------------队列管理
class link
{
public:
string data;
char stickxing;
char xinghao;
link *next;
};
class queue
{
public:
link*front,*rear;
void iniqueue(queue&s);//初始化队列
void enqueue(queue&s,char x);//入队列
void dlqueue(queue&s);//出队列
string gethead1(queue&s);//取对头
char gethead2(queue&s);
char gethead3(queue&s);
int empty(queue&s);
void print(queue&s);
friend class custom;
#include<ctime>
#include<time.h>
#include<windows.h>
#include<string>
using namespace std;
const int m=100;
char stick[m];//定义存储数组存储病人
//-------------------------------------队列管理
class link
{
public:
string data;
char stickxing;
char xinghao;
link *next;
};
class queue
{
public:
link*front,*rear;
void iniqueue(queue&s);//初始化队列
void enqueue(queue&s,char x);//入队列
void dlqueue(queue&s);//出队列
string gethead1(queue&s);//取对头
char gethead2(queue&s);
char gethead3(queue&s);
int empty(queue&s);
void print(queue&s);
friend class custom;
};
void queue::iniqueue (queue&s){
link *p;
p=new link;
p->next=NULL;
s.front=p;
s.rear=p;
}
void queue::enqueue(queue&s,char x)
{ link *p;
string num;
string num1;
p=new link;
if(x=='1'||x=='2')
p->xinghao=x;
else if(x=='c')
{
p->stickxing=x;
p->next=s.front->next;
s.front->next=p;
}
else
{cout<<"请输入病人挂号序号:num"<<endl;
cin>>num;
p->data=num;
p->stickxing=x;
cout<<"病人要挂普通号还是专家号:a(表示普通号) b(表示专家号)"<<endl;
cin>>p->xinghao;}
p->next=s.rear->next;
s.rear->next=p;
void queue::iniqueue (queue&s){
link *p;
p=new link;
p->next=NULL;
s.front=p;
s.rear=p;
}
void queue::enqueue(queue&s,char x)
{ link *p;
string num;
string num1;
p=new link;
if(x=='1'||x=='2')
p->xinghao=x;
else if(x=='c')
{
p->stickxing=x;
p->next=s.front->next;
s.front->next=p;
}
else
{cout<<"请输入病人挂号序号:num"<<endl;
cin>>num;
p->data=num;
p->stickxing=x;
cout<<"病人要挂普通号还是专家号:a(表示普通号) b(表示专家号)"<<endl;
cin>>p->xinghao;}
p->next=s.rear->next;
s.rear->next=p;
剩余10页未读,继续阅读
资源评论
- toniey0002014-05-09确实帮助我很多
- mygod_cx2015-01-05写的不错 虽然有些地方还是不太懂
- liuxmzc2017-01-06略有帮助,参考
hekai_920428
- 粉丝: 1
- 资源: 1
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功