- 博客(0)
- 资源 (2)
- 收藏
- 关注
用优先数实现处理器调度
用优先数实现处理器调度C语言版
typedef struct
{
char name[5];//进程名
int time;//运行时间
int priority;//优先数
char state;//状态
}DATA;
typedef struct PCB
{
DATA data;
struct PCB *next;
}pcb;
此为数据结构
2011-11-24
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅