上传者: 38614417
|
上传时间: 2022-01-07 17:32:18
|
文件大小: 45KB
|
文件类型: -
本文实例为大家分享了C语言实现医院管理系统的具体代码,供大家参考,具体内容如下
#include stdio.h
#include string.h
#include stdlib.h
#include malloc.h
#define NULL 0
typedef struct
{ int num;
char name[10];
int age;
char sex;
}people; //一个患者的信息
typedef struct Node
{
people *data;
struct Node *next;
}queue; // 定义队列结构体
typed