xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

  • 大小: 2.48MB
    文件類型: .zip
    金幣: 2
    下載: 0 次
    發布日期: 2023-11-12
  • 語言: C/C++
  • 標簽: C++??

資源簡介

基于VC6.0平臺 C++ 語言編程 醫院管理系統

資源截圖

代碼片段和文件信息

#include
#include
#include
#include?
#include?//把日期和時間轉換為字符串??用?法:?char?*ctime(const?time_t?*time);
#include?
#include
#include
#include?
#define?Max?100
#define?NOB?“住院日期??姓名?性別?年齡?科室?房號床號?床位費?治療費?藥材費?輸液費?手術費?合計“
#define?NOC?“出院日期??姓名?性別?年齡?科室?房號床號?床位費?治療費?藥材費?輸液費?手術費?合計“
using?namespace?std;

template????????????//template:模板,樣板
class?cNode??????????????????????????//節點
{
public:??????????????????????????
T?data;
????cNode?*next;
};

template?
class?tList???????????????????????
{
public:???????????????????????????????//定義成員函數
tList();
void?Create();??????????????????????//創建鏈表
bool?Empty()?const;?????????????????//判斷鏈表是否為空
void?Insert(const?T?e);?????????//從尾部插入一個元素
cNode*?GetcNode(int?i);?????????????//返回第i個節點
bool?Find(const?T?e);???????????????//在鏈表中查找某個值
~tList();????????????????????????????//銷毀鏈表析構
????cNode?*head;????????????????????????//頭節點
};

template?
tList::tList()?????????????????//類的成員函數的實現
{
head=new?cNode;
head->next=NULL;
}

template?
void?tList::Create()
{
????cNode?*p;
p=head;
p->next=NULL;
}
template?
bool?tList::Empty()???const?
{
return?(head->next==NULL);
}

template?
void?tList::Insert(const?T?e)?????//insert:插入
{
????cNode?*p*q;
p=head;
q=new?cNode;
q->data=e;
while(p->next)
{
p=p->next;
}
p->next=q;
q->next=NULL;
}

template?
cNode*?tList::GetcNode(int?i)??????????????//返回第i個節點
{
int?k=0;
????cNode?*p;
p=head;
while(p?&&?k {
p=p->next;
++k;
}
return?p;
}


template?
bool?tList::Find(const?T?e)?????????????//在鏈表中查找某個值
{
bool?flag=false;
????cNode?*p;
p=head->next;
while(p)
{
??????if(p->data==e)
{
flag=true;
break;
}
p=p->next;
}
return?flag;
}

template?
tList::~tList()
{
cNode?*p;
while(head)
{
p=head->next;
delete?head;
head=p;
}
}

static?int?a;
class?Info;
tList?tListInfo;

void?endWindow();
void?firstWindow();
int?secondWindow();//第二個登陸界面選擇人員登錄;
int?adminLand();//管理員登陸界面
int?adminWindow();//管理員相關操作
int?doctorLand();//醫護人員登錄界面由D和N來區別后面跟隨3位數字目前設定從1到500
int?doctorWindow();//醫生相關操作
int?nurseWindow();//護士相關操作
void?tkeychange();//密碼修改
void?clear();
void?ghostsave();
void?ghostload();
void?manage();


void?AddthePatientInfo(tList?*tListInfo);??//錄入病人信息
void?AddtheCaseInfo(tList?*tListInfo);??//錄入病情
void?SavetheInfo(tList?*tListInfo);??//保存
void?ModifythePatientInfo(tList?*tListInfo);??//修改病人信息
void?ModifytheCaseInfo(tList*tListInfo)?;?????//實時病況
void?FindtheInfo(tList?*tListInfo);??????//查詢????
void?FindtheInfoByR(tList?*tListInfo);?????//?查詢按病房號
void?FindtheInfoByI(tList?*tListInfo);????//查詢按病號
void?FindtheInfoByN(tList?*tListInfo);???//查詢按姓名
void

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2014-03-23?14:09??daima\
?????文件?????????690??2013-07-25?14:04??daima\1.txt
?????目錄???????????0??2014-03-23?14:09??daima\Debug\
?????文件??????729166??2013-07-25?22:30??daima\Debug\bitter.exe
?????文件??????950912??2013-07-25?22:30??daima\Debug\bitter.ilk
?????文件??????595148??2013-07-25?22:30??daima\Debug\bitter.obj
?????文件?????5528396??2013-07-25?14:44??daima\Debug\bitter.pch
?????文件?????1303552??2013-07-25?22:30??daima\Debug\bitter.pdb
?????文件??????320512??2013-07-25?22:30??daima\Debug\vc60.idb
?????文件??????143360??2013-07-25?22:30??daima\Debug\vc60.pdb
?????文件???????????0??2013-07-25?15:39??daima\Info.txt
?????文件???????????0??2013-07-25?14:56??daima\InfoGhost?1.txt
?????文件???????????0??2013-07-25?15:12??daima\InfoGhost.txt
?????文件???????64913??2013-07-25?15:35??daima\bitter.cpp
?????文件????????3401??2013-07-25?22:30??daima\bitter.dsp
?????文件?????????520??2013-07-25?22:30??daima\bitter.dsw
?????文件???????58368??2013-07-25?22:30??daima\bitter.ncb
?????文件???????48640??2013-07-25?22:30??daima\bitter.opt
?????文件????????1162??2013-07-25?22:30??daima\bitter.plg
?????文件????????4000??2013-07-24?10:15??daima\醫生密碼.txt
?????文件?????????402??2013-07-25?14:49??daima\在院病人信息存檔文件.txt
?????文件?????????718??2013-07-25?14:49??daima\在院病人信息輸出文件.txt
?????文件?????????346??2013-07-25?15:39??daima\在院病人費用信息存檔文件.txt
?????文件?????????637??2013-07-25?14:15??daima\在院病人費用信息輸出文件.txt
?????文件???????????6??2013-07-25?09:29??daima\密碼.txt
?????文件????????4000??2013-07-24?10:15??daima\護士密碼.txt

評論

共有 條評論