代码拉取完成,页面将自动刷新
#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;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。