真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

C++如何實現(xiàn)病人就醫(yī)管理系統(tǒng)

這篇文章給大家分享的是有關C++如何實現(xiàn)病人就醫(yī)管理系統(tǒng)的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

創(chuàng)新互聯(lián)堅持“要么做到,要么別承諾”的工作理念,服務領域包括:網(wǎng)站建設、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣等服務,滿足客戶于互聯(lián)網(wǎng)時代的九臺網(wǎng)站設計、移動媒體設計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡建設合作伙伴!

具體內(nèi)容如下

函數(shù)可實現(xiàn)反應病人到醫(yī)院看病,排隊看醫(yī)生的情況,有行醫(yī)類模板的定義及所有類函數(shù)的編寫代碼

部分代碼展示:

lk_queue.h

#ifndef __LK_QUEUE_H__
#define __LK_QUEUE_H__

#include "utility.h" // 實用程序軟件包
#include "node.h" // 結點類模板

// 鏈隊列類模板

template
class LinkQueue 
{
protected:
// 鏈隊列實現(xiàn)的數(shù)據(jù)成員:
 Node *front, *rear; // 隊頭隊尾指指

// 輔助函數(shù)模板:
 void Init(); // 初始化隊列

public:
// 抽象數(shù)據(jù)類型方法聲明及重載編譯系統(tǒng)默認方法聲明:
 LinkQueue(); // 無參數(shù)的構造函數(shù)模板
 virtual ~LinkQueue(); // 析構函數(shù)模板
 int Length() const; // 求隊列長度 
 bool Empty() const; // 判斷隊列是否為空
 void Clear(); // 將隊列清空
 void Traverse(void (*visit)(const ElemType &)) const ; // 遍歷隊列
 StatusCode OutQueue(ElemType &e); // 出隊操作
 StatusCode GetHead(ElemType &e) const; // 取隊頭操作
 StatusCode InQueue(const ElemType &e); // 入隊操作
 LinkQueue(const LinkQueue ©); // 復制構造函數(shù)模板
 LinkQueue &operator =(const LinkQueue ©);// 重載賦值運算符
};

// 鏈隊列類模板的實現(xiàn)部分

template 
void LinkQueue::Init()
// 操作結果:初始化隊列
{
 rear = front = new Node; // 生成頭結點
}

template
LinkQueue::LinkQueue()
// 操作結果:構造一個空隊列
{
 Init();
}

template
LinkQueue::~LinkQueue()
// 操作結果:銷毀隊列
{
 Clear(); 
}

template
int LinkQueue::Length() const
// 操作結果:返回隊列長度 
{
 int count = 0; // 計數(shù)器 
 for (Node *tmpPtr = front->next; tmpPtr != NULL; tmpPtr = tmpPtr->next)
 { // 用tmpPtr依次指向每個元素
 count++; // 對棧每個元素進行計數(shù)
 }
 return count;
}

template
bool LinkQueue::Empty() const
// 操作結果:如隊列為空,則返回true,否則返回false
{
 return rear == front;
}

template
void LinkQueue::Clear() 
// 操作結果:清空隊列
{
 ElemType tmpElem; // 臨時元素值
 while (Length() > 0)
 { // 隊列非空,則出列
 OutQueue(tmpElem);
 }
}

template 
void LinkQueue::Traverse(void (*visit)(const ElemType &)) const 
// 操作結果:依次對隊列的每個元素調(diào)用函數(shù)(*visit)
{
 for (Node *tmpPtr = front->next; tmpPtr != NULL; 
 tmpPtr = tmpPtr->next)
 { // 對隊列每個元素調(diào)用函數(shù)(*visit)
 (*visit)(tmpPtr->data);
 }
}


template
StatusCode LinkQueue::OutQueue(ElemType &e)
// 操作結果:如果隊列非空,那么刪除隊頭元素,并用e返回其值,返回SUCCESS,
// 否則返回UNDER_FLOW,
{
 if (!Empty()) 
 { // 隊列非空
 Node *tmpPtr = front->next; // 指向隊列頭素
 e = tmpPtr->data; // 用e返回隊頭元素
 front->next = tmpPtr->next; // front指向下一元素
 if (rear == tmpPtr)
 { // 表示出隊前隊列中只有一個元素,出隊后為空隊列
 rear = front;
 }
 delete tmpPtr; // 釋放出隊的結點
 return SUCCESS;
 }
 else
 { // 隊列為空
 return UNDER_FLOW;
 }
}

template
StatusCode LinkQueue::GetHead(ElemType &e) const
// 操作結果:如果隊列非空,那么用e返回隊頭元素,返回SUCCESS,
// 否則返回UNDER_FLOW,
{
 if (!Empty()) 
 { // 隊列非空
 Node *tmpPtr = front->next; // 指向隊列頭素
 e = tmpPtr->data; // 用e返回隊頭元素
 return SUCCESS;
 }
 else
 { // 隊列為空
 return UNDER_FLOW;
 }
}

template
StatusCode LinkQueue::InQueue(const ElemType &e)
// 操作結果:插入元素e為新的隊尾,返回SUCCESS
{
 Node *tmpPtr = new Node(e); // 生成新結點
 rear->next = tmpPtr; // 新結點追加在隊尾
 rear = tmpPtr; // rear指向新隊尾
 return SUCCESS;
}

template
LinkQueue::LinkQueue(const LinkQueue ©)
// 操作結果:由隊列copy構造新隊列——復制構造函數(shù)模板
{
 Init();
 for (Node *tmpPtr = copy.front->next; tmpPtr != NULL; 
 tmpPtr = tmpPtr->next)
 { // 對copy隊列每個元素對當前隊列作入隊列操作
 InQueue(tmpPtr->data);
 }
}

template
LinkQueue &LinkQueue::operator =(const LinkQueue ©)
// 操作結果:將隊列copy賦值給當前隊列——重載賦值運算符
{
 if (© != this)
 {
 Clear();
 for (Node *tmpPtr = copy.front->next; tmpPtr != NULL; 
 tmpPtr = tmpPtr->next)
 { // 對copy隊列每個元素對當前隊列作入隊列操作
 InQueue(tmpPtr->data);
 }
 }
 return *this;
}

#endif

Hospitalize.h

#ifndef __HOSPITALIZE_H__
#define __HOSPITALIZE_H__


#include"lk_queue.h" //鏈隊列


//行醫(yī)類
class HospitalListWLY
{
private:
 //行醫(yī)類數(shù)據(jù)成員
 LinkQueuequeue; //病人隊列


 //輔助函數(shù)
 void StandInALine(); //排隊
 void Cure(); //就診
 void Display(); //查看排隊


public:
 //方法聲明及重載編譯系統(tǒng)默認方法聲明
 HospitalListWLY(){}; //無參數(shù)的構造函數(shù)
 ~HospitalListWLY(){}; //析構函數(shù)
 void Work(); //醫(yī)生行醫(yī)工作
};

//行醫(yī)類的實現(xiàn)部分
void HospitalListWLY::StandInALine()
//操作結果:輸入病人的病歷號,加入到病人排隊隊列中
{
 unsigned int num; //病歷號


 cout<<"請輸入病歷號:";
 cin>>num; //輸入病人的病歷號
 queue.InQueue(num); //將病歷號加入到病人排隊隊列中

}


void HospitalListWLY::Cure()
//操作結果:病人排隊隊列中最前面的病人就診,將其從隊列中刪除
{
 if (queue.Empty())
 { //無病人
 cout<<"現(xiàn)已沒有病人在排隊了!"<>select; //選擇功能
 switch(select)
 {
 case 1:
 StandInALine(); //排隊——輸入病人的病歷號,加入到病人隊列中
 break;
 case 2:
 Cure(); //就診——病人排隊隊列中最前面的病人就診,并將其從隊列中刪除
 break;
 case 3:
 Display(); //查看隊列——從隊首到隊尾列出所有的排隊病人的病歷號
 break;
 }
 }
}


#endif

感謝各位的閱讀!關于“C++如何實現(xiàn)病人就醫(yī)管理系統(tǒng)”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!


分享標題:C++如何實現(xiàn)病人就醫(yī)管理系統(tǒng)
本文來源:http://weahome.cn/article/gojdcc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部