⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jin.c

📁 操作系统的进程调度的模拟实现的C语言源代码
💻 C
字号:
#include "stdio.h"

#include <stdlib.h>

#include <conio.h> 

#define getpch(type) (type*)malloc(sizeof(type)) 

#define NULL 0 

struct pcb { /* 定义进程控制块PCB */ 

char name[10];       //进程名

char state;         //进程状态

int super;          //进程优先级

int ntime;         //进程需要运行时间

int rtime;          //进程已经运行的时间

struct pcb* link; 

}*ready=NULL,*p; 

typedef struct pcb PCB; 

  

void inunization()                //初始化界面
{
  printf("\n\n\t\t*********************************************\t\t\n");
  printf("\t\t\t\t实验一 进程调度\n");
  printf("\t\t*********************************************\t\t\n");
  printf("\n\n\n\t\t\t\t\t计算机学院软件四班\n");
  printf("\t\t\t\t\t蓝小花\n");
  printf("\t\t\t\t\t3204007102\n");
  printf("\t\t\t\t\t完成时间:2006年11月10日\n\n\n\n");
  printf("请输入任意键进入演示过程\n");
  getch();
}
    

void sort() /* 建立对进程进行优先级排列函数*/

{ 

PCB *first, *second; 

int insert=0; 

if((ready==NULL)||((p->super)>(ready->super))) /*优先级最大者,插入队首*/ 

{ 

p->link=ready; 

ready=p; 

} 

else /* 进程比较优先级,插入适当的位置中*/ 

{ 

first=ready; 

second=first->link; 

while(second!=NULL) 

{ 

if((p->super)>(second->super)) /*若插入进程比当前进程优先数大,*/ 

{ /*插入到当前进程前面*/ 

p->link=second; 

first->link=p; 

second=NULL; 

insert=1; 

} 

else /* 插入进程优先数最低,则插入到队尾*/ 

{ 

first=first->link; 

second=second->link; 

} 

} 

if(insert==0) first->link=p; 

} 

} 

 
 
 
void input() /* 建立进程控制块函数*/

{ 

int i;

system("cls"); /*清屏*/

printf("\n 请输入五个进程信息:\n");


for(i=0;i<5;i++)

{

printf("\n 进程号No.%d:\n",i);

p=getpch(PCB);

printf("\n 输入进程名:");

scanf("%s",p->name);

printf("\n 输入进程优先数:");

scanf("%d",&p->super);

printf("\n 输入进程运行时间:");

scanf("%d",&p->ntime);

printf("\n");
p->rtime=0;p->state='w'; 

p->link=NULL; 

sort(); /* 调用sort函数*/ 

} 

} 

int space()     //计算进程控制块的个数

{ 

int l=0; PCB* pr=ready; 

while(pr!=NULL) 

{ 

l++; 
pr=pr->link; 

} 

return(l); 

} 

void disp(PCB * pr) /*建立进程显示函数,用于显示当前进程*/

{ 

printf("\n qname \t state \t super \t ndtime \t runtime \n"); 

printf("|%s\t",pr->name); 

printf("|%c\t",pr->state); 

printf("|%d\t",pr->super); 

printf("|%d\t",pr->ntime); 

printf("|%d\t",pr->rtime); 

printf("\n"); 

} 
 
 
void check() /* 建立进程查看函数 */

{ 

PCB* pr; 

printf("\n **** 当前正在运行的进程是:%s",p->name); /*显示当前运行进程*/ 

disp(p); 

pr=ready; 

printf("\n ****当前就绪队列状态为:\n"); /*显示就绪队列状态*/ 

while(pr!=NULL) 

{ 

disp(pr); 

pr=pr->link; 

} 

} 

void destroy() /*建立进程撤消函数(进程运行结束,撤消进程)*/

{ 

printf("\n 进程 [%s] 已完成.\n",p->name); 

free(p); 

} 

void running() /* 建立进程就绪函数(进程运行时间到,置就绪状态*/

{ 

(p->rtime)++; 

if(p->rtime==p->ntime) 

destroy(); /* 调用destroy函数*/ 

else 

{ 

(p->super)--; 

p->state='w'; 

sort(); /*调用sort函数*/ 

} 

} 

void youxian()      // 高优先级优先算法的程序入口
{
int len,h=0;
char ch;
 system("cls");
input(); 

len=space(); 

while((len!=0)&&(ready!=NULL)) 

{ 

ch=getchar(); 

h++; 

printf("\n The execute number:%d \n",h); 

p=ready; 

ready=p->link; 

p->link=NULL; 

p->state='R'; 

check(); 

running(); 

printf("\n 按任一键继续......"); 
} 

printf("\n\n 进程已经完成.\n"); 

ch=getchar(); 

} 

void sort2()
{
PCB *q;
 q=ready;
if(ready==NULL) ready=p;
else
 {
  while(q->link!=NULL) {q=q->link;}
  q->link=p;
}
 
}

void input2() /* 建立进程控制块函数*/

{ 

int i;

 system("cls"); /*清屏*/

printf("\n 请输入五个进程信息:\n");



for(i=0;i<5;i++)

{

printf("\n 进程号No.%d:\n",i);

p=getpch(PCB);

printf("\n 输入进程名:");

scanf("%s",p->name);

printf("\n 输入进程运行时间:");

scanf("%d",&p->ntime);

printf("\n");


p->rtime=0;p->state='w'; 

p->link=NULL; 

sort2(); /* 调用sort函数*/ 

} 

} 

void running2() /* 建立进程就绪函数(进程运行时间到,置就绪状态*/

{ 

(p->rtime)++; 

if(p->rtime==p->ntime) 

destroy(); /* 调用destroy函数*/ 

else 

{ 

p->state='w'; 

sort2(); /*调用sort函数*/ 

} 

} 


void lunzhuan()       //轮转法演示进程的程序入口
{
 int len,h=0;
char ch;
  system("cls");
input2(); 

len=space(); 

while((len!=0)&&(ready!=NULL)) 

{ 

ch=getchar(); 

h++; 

printf("\n The execute number:%d \n",h); 

p=ready; 

ready=p->link; 

p->link=NULL; 

p->state='R'; 

check(); 

running2(); 

printf("\n 按任一键继续......"); 
} 

printf("\n\n 进程已经完成.\n"); 

ch=getchar(); 

} 

void menu()    //菜单
{
int m;
system("cls");
printf("\n\n\t\t*********************************************\t\t\n");
printf("\t\t\t\t进程调度演示\n");
printf("\t\t*********************************************\t\t\n");
printf("\n\n\n\t\t\t1.演示最高优先数优先算法.");
printf("\n\t\t\t2.演示轮转法算法.");
printf("\n\t\t\t0.退出程序.");
printf("\n\n\t\t\t\t选择进程调度方法:");
scanf("%d",&m);
switch(m)
{
case 1:
    youxian();         //高优先级优先算法的程序入口
     system("cls");
    menu();
    break;
case 2:
    lunzhuan();          //轮转法演示进程的程序入口
   system("cls");
    menu();
    break;
case 0:
    system("cls");
    break;
default:
     system("cls");
    menu();
}
}

main() /*主函数*/ 

{ 
inunization();
menu();
}
 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -