加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
os2-2 2.09 KB
一键复制 编辑 原始数据 按行查看 历史
莫光清 提交于 2021-05-21 15:29 . add os2-2.
#include "stdio.h"
#include <stdlib.h>
#include <conio.h>
#define getpch(type) (type*)malloc(sizeof(type))
//#define NULL 0
struct jcb
{
char name[10];//名
char state;//状态
int updatetime;//加入时间 ,开始运行时刻
int netime;//需要的运行时间
int runtime;//已经运行的次数
int need;//所需要的资源
int endtime;//完成时间
int cytime;//周转时间
int cltime;//带权周转时间
struct jcb* link;
}*ready=NULL,*p,*q;
typedef struct jcb JCB;
void fcfs(){
}
void sjf(){
}
void hrn(){
}
void show(JCB *pr){
printf("\n name \t state \t need \t updatetime \t ndtime \t runtime \n");
printf("|%s\t",pr->name);
printf("|%c\t",pr->state);
printf("|%d\t",pr->need);
printf("\t");
// printf("|%d\t",pr->ndtime);
printf("|%d\t",pr->ndtime);
printf("|%d\t",pr->runtime);
printf("\n");
}
void input(){
nt i,num;
// clrscr(); /*清屏*/
printf("\n 请输入进程号?");
scanf("%d",&num);
for(i=0; i<num; i++)
{
printf("\n 进程号No.%d:\n",i);
p=getpch(PCB);
printf("\n 输入进程名:");
scanf("%s",p->name);
printf("\n 输入进程需要资源:");
scanf("%d",&p->need);
printf("\n 输入进程运行时间:");
scanf("%d",&p->netime);
printf("\n");
p->updatetime=i;
p->runtime=0;
p->state='w';
p->link=NULL;
if(ready == NULL)
ready =p=q;
else{
q->link=p;
q = p;
}
}
}
void choose(){
int type;
system("cls");
printf("\n调一个吧\n");
printf("1.先来先服务\n");
printf("2.最短作业优先算法\n");
printf("3.响应比高者优先算法\n");
printf("4.退出 \n");
scanf("%d",&type);
switch(type){
case 1 :
fcfs();
case 2 :
sjf();
case 3 :
hrn();
case 4 :
system("cls");
break;
default :
printf("这都能按错?不会吧不会吧");
system("pause");
choose();
}
}
int main() {
choose();
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化