当前位置:   article > 正文

C++数据结构队列的链式存储应用 医院就诊系统_用链队列模拟实现病人到医院看病就医的情况,基本功能如下

用链队列模拟实现病人到医院看病就医的情况,基本功能如下

C++数据结构 队列的链式存储 实现医院就诊系统

使用队列的链式存储结构实现医院就诊系统,队列的特点先进先出

医院就诊系统一共实现四个功能:1排队,2就诊,3查询排队患者信息,4退出系统
1、 排队,排队的病历号从0开始,每执行依次排队,病历号+1,进链队
2、 就诊,依次出链队,先进先出,同时随机显示诊断结果
3、 查询排队人数,不仅显示出人数,也显示出排队患者的病历号
4、 退出系统,同时清空链队。

具体代码的解释都写在注释里了

#include<iostream>
#include<fstream>
#include<stdlib.h>
#include<stdio.h>
using namespace std; 
typedef int ElemType;
struct LNode{
	ElemType data;//值域 
	LNode* next;//链接指针域 
};
struct LinkQueue{
	LNode* front;//队首指针 
	LNode* rear;//队尾指针 
}; 

//1.初始化队列
void InitQueue(LinkQueue& HQ){
	HQ.front=HQ.rear=NULL;

} 
//7.计算链队长度
int LenthQueue(LinkQueue& HQ){
	LNode* p;
	int Lenth=0;
	p=HQ.front->next;
	while(p!=NULL){
		Lenth++;
		p=p->next;
	}
	return Lenth;
} 

//2.向链队中插入一个元素
ElemType EnQueue(LinkQueue& HQ,ElemType item){
	LNode* newptr=new LNode;//得到一个新结点
	newptr->data=item;
	newptr->next=NULL;//新结点指针域置空
	if(HQ.rear==NULL)
	   HQ.front=HQ.rear=newptr;//若链队为空的话,则新结点既是队首又是队尾 
	else//若链队非空,则新结点被链接到队尾,并且修改队尾指针 
	   HQ.rear=HQ.rear->next=newptr;

} 
//3.从链队中删除一个元素
ElemType OutQueue(LinkQueue& HQ,ElemType &e){
	//判空
	if(HQ.front==NULL){
		cerr<<"没有患者在排队!"<<endl;
	} 
   /* LNode* p=HQ.front;//暂存队首指针以便回收队首结点
	HQ.front=p->next;//修改队首指针,使其指向下一个结点
	e = p->data;
	if(HQ.front==NULL)
	  HQ.rear=NULL;//若删除之后链队为空,则使队尾指针为空 
	delete p;*/
	LNode *p;
	p = HQ.front->next;
	e = p->data;
	HQ.front->next = p->next;
	if (HQ.rear == p)
		HQ.rear = HQ.front;
	free(p);		
} 
/*//4.读取队首元素
ElemType PeekQueue(LinkQueue& HQ){
	if(HQ.front==NULL){
		cerr<<" 链队队首无元素!"<<endl;
		exit(1);
	} 
	return HQ.front->data;
} 
*/ 
//5.检查链队是否为空
bool EmptyQueue(LinkQueue& HQ){
	return HQ.rear==NULL; 
} 

//6.清除链队中的所有元素,使其成为一个空队
 void ClearQueue(LinkQueue& HQ){
    LNode* p=HQ.front;//队首指针赋给p
	while(p!=NULL){/*依次删除链队里的每一个结点,循环结束后,队首指针已经为空!*/
		HQ.front=HQ.front->next;
		delete p;
		p=HQ.front;
	} 
	HQ.rear=NULL;
 }
 //疾病类型的输出,运用随机 
void Type_Sickness(int type){
	switch(type){
		case 1:
		    cout<<" 您得的是感冒,吃点药吧!"<<endl;
			break;
		case 2:
			cout<<" 您得的是严重感冒,打针吧!"<<endl;
			break;
		case 3:
			cout<<" 您发烧37.8度,挂瓶吧!"<<endl;
		    break;
		case 4:
			cout<<" 您是劳累过度了,注意休息即可!"<<endl;
			break;
		case 5:
			cout<<" 您的病需要进一步诊断,请转去大医院!"<<endl;
			break;
		case 6:
			cout<<" 您什么病也没有,恭喜您!"<<endl;
			break;
	}
}

 //查询
 void Search(LinkQueue& HQ) {
 	LNode *p;
 	//判空
	if(HQ.front==NULL){
		cerr<<"当前无排队患者!"<<endl;
	}
	else{
		cout<<"当前排队患者:"<<endl;
		p=HQ.front->next;
		while(p!=NULL){
			cout<<"病历号为"<<p->data<<"的患者"<<endl;
			p=p->next; 
		}
	} 
}
main(){
	LinkQueue HQ;
    InitQueue(HQ);
   
    int num;//排队病历号 
    //int numm;//当前就诊患者病历号 
    int n;
    cout<<"**医院就诊系统**"<<endl<<endl;
    cout<<" 1.排队"<<endl;
    cout<<" 2.就诊"<<endl;
    cout<<" 3.查询"<<endl;
    cout<<" 4.下班"<<endl;

while(1){
	cout<<"请选择服务:"<<endl;
	cin>>n;
	if(n==1){//排队 
		EnQueue(HQ,num);
		cout<<"患者病历号为:"<<num<<endl;
		cout<<"在您前面有"<<LenthQueue(HQ)<<"位患者"<<endl; 
		num++; 
	}
	if(n==2){//就诊 
		OutQueue(HQ,num);
		cout<<"当前就诊患者病历号为:"<<num<<endl;
		cout<<"诊断结果为:";
		Type_Sickness(rand()%6);// rand()%6产生的值为0-5,rand()函数产生的数在0到32767之间 
	}
	if(n==3){//查询
	    Search(HQ) ;
	    cout<<endl;
	}
	if(n==4){//退出 
	ClearQueue(HQ);
	cout<<"您已经成功退出系统!"<<endl; 
		break;
	}	
  }
  system("pause");
  return 0; 
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168

运行结果如下:

一、排队:
在这里插入图片描述
二、就诊
在这里插入图片描述

三、查询排队
在这里插入图片描述
四、退出程序、

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/460240
推荐阅读
相关标签
  

闽ICP备14008679号