发布时间:2015-12-04 09:52:59
模拟进程调度#include<conio.h>#include<stdio.h>#include<dos.h> /* 所用头文件 */#define PACE 5 /* 每次时间片长度 */ typedef struct running{ int num; int priority; int time;}Run; /* 处于运行状态的进程 */ typedef struct waiting{ int num; in.........【阅读全文】
阅读(510) | 评论(0) | 转发(0)