1. 首页
  2. 操作系统
  3. DOS
  4. 操作系统.c

操作系统.c

上传者: 2021-04-23 06:54:07上传 CPP文件 5.62KB 热度 7次
#include #include #define Free 0 //空闲状态 #define Busy 1 //已用状态 #define MAX_length 4096 //最大内存空间为4096KB int flag; typedef struct freearea//定义一个空闲区说明表结构 { long size; //分区大小 long address; //分区地址 int state; //状态 }ElemType; // 线性表的双向链表存储结构 typedef struct DuLNode {
下载地址
用户评论