#include #include//调用STL中的优先队列 using namespace std; //定义一个PCB进程类 class PCB { public: char name[10];//进程的名字 int runtime;//该进程的运行时间 int priority;//该进程的优先级 char state;//该进程的状态 PCB* next;//指向下个进程的指针 void print()const//输出进程的信息 { cout<<" "<
2021-06-04 14:27:13 221KB 处理器调度 优先数算法实现
1