资源简介
通过十字交叉链表实现一个病例管理系统,可以查找、删除、更新信息
代码片段和文件信息
#include“stdio.h“
#include“stdlib.h“
#include“string.h“
typedef struct hospital_info{
char dise_num[10]; /*病历编号*/
char ke[10]; /*门诊科别*/
char date[11]; /*门诊时间*/
char symptom[60]; /*症状*/
char diagnosis[60]; /*诊断*/
char treatment[60]; /*治疗意见*/
char doctor[10]; /*医师姓名*/
struct hospital_info *next;
}hospitals;
typedef struct disease_info{
char dise_num[10]; /*病历编号*/
char employee[10]; /*姓名*/
char sex; /*性别*/
char unit[30]; /*工作单位*/
char date[11]; /*出生日期*/
char drug_allergy[30]; /*药物过敏史*/
char phone[12]; /*联系电话*/
char addr[30]; /*住址*/
hospitals *head_hosp;
struct disease_info *next;
}diseases;
typedef struct unit_info{
char unit_num[10]; /*单位编号*/
char unit[30]; /*单位名称*/
char manager[20]; /*负责人*/
char phone[12]; /*联系电话*/
int total;
diseases *head_disease;
struct unit_info *next;
}units;
void create_cross_list(units**head);
void save_cross_list(units*head);
void traverse_cross_list(units*head);
void load_cross_list(units **head);
void Revise_unit(units *head);
void Revise_dise(units *head);
void Revise_hosp(units *head);
void Insert_unit(units *head);
void Insert_dise(units *head);
void Insert_hosp(units *head);
void Delete_unit(units *head);
void Delete_dise(units *head);
void Delete_hosp(units *head);
void Search_unit(units *head);
void Search_dise(units *head);
void Search_hosp(units *head);
void Display_no_hosp(units *head);
void Sortmonth(units *head);
void SortTotal(units *head);
void Sortpeople(units *head);
void main(void)
{
units *head=NULL;
short choice;
printf(“-----the unit information manage system!------\n“);
printf(“< 1----------create the cross list >\n“);
printf(“< 2----------save the cross list >\n“);
printf(“< 3----------traverse the cross list >\n“);
printf(“< 4----------load the cross list >\n“);
printf(“< 5-----------Revise information >\n“);
printf(“< 6-----------Insert information >\n“);
printf(“< 7-----------Delete information >\n“);
printf(“< 8-----------Search information >\n“);
printf(“< 9--------------- tong ji >\n“);
printf(“< 10---------------退出 >\n“);
printf(“--------------------------------------------->\n“);
f: while(1){
printf(“请选择要进行的操作:(1-10)“);
scanf(“%hd“&choice);
getchar(); /*用于吸收换行符*/
switch(choice)
{
case 1:create_cross_list(&head);
break;
case 2:save_cross_list(head);break;
case 3:traverse_cross_list(head);
break;
case 4:load_cross_list(&head);break;
case 5:
{
printf(“ <<<<<<<<<<<<<<<<
- 上一篇:一个简单的vs c++ socket通讯程序
- 下一篇:随机生成汉字的小程序
相关资源
- 基于 51 单片机 多进程 多任务 纯 C语
- DSP小波变换源代码
- C语言 简易二十四节气判断代码
- 端口扫描c实现
- AES加密算法c语言实现代码
- C语言编在VC环境下带界面的计算器
- 键盘控制步进电机正反转和调速c语言
- 毕业设计图书管理系统C语言源代码,
- C语言版BM3D算法
- BayesShrink阈值图像小波去噪 c语言
- 用C语言对图像加高斯噪声
- 旅行商问题 C语言解法
- 二叉树的C语言实现,实现二叉树基本
- C语言马踏棋盘_实验报告+源代码
- 应用C语言编写ADAMS用户自定义函数的
- 模拟时钟转动程序
- C语言最小二乘法多项式拟合
- C语言FIR滤波器
- c语言课程设计之网络购物系统
- 大津法C语言实现方法
- 算术编码C语言程序编码解码,非自适
- 用C语言实现文件的模糊查找.pdf
- C语言中文分词源代码
- C语言大作业 菜单驱动的学生成绩管理
- apriori算法的c语言实现
- 编译原理课程设计广工C语言
- websocket编程C语言源码
- C语言解析IP数据包程序
- SHA HMAC 和SHA3基于Keccak加密算法测试代
- 霍夫曼编码的C语言实现
评论
共有 条评论