2016年6月22日

实验三(FCFS ,SJF,HRRN)

摘要: #include<stdio.h>#include<stdlib.h>#include<string.h>#include<conio.h>#include <time.h>#define N 30int File();int input();void quit();typedef struct J 阅读全文

posted @ 2016-06-22 13:08 01-李嘉秀 阅读(456) 评论(0) 推荐(0) 编辑

2016年6月21日

实验四 用信号量解决进程互斥与同步问题

摘要: #include<stdio.h> #include<stdlib.h> #include<math.h> #include<time.h> #define N 100 typedef struct process { int num; }P; P a[N]; int wordtime=0; voi 阅读全文

posted @ 2016-06-21 12:46 01-李嘉秀 阅读(646) 评论(0) 推荐(0) 编辑

2016年6月15日

实验二 (3)最短作业优先调度

摘要: #include<stdio.h>#define Time int#define M 100typedef struct process{ char name[M];//进程名 int priority;//优先数 int reachtime;//到达时间 int needtime;//需要时间 i 阅读全文

posted @ 2016-06-15 13:27 01-李嘉秀 阅读(468) 评论(0) 推荐(0) 编辑

2016年4月29日

实验二 (2)优先数调度

摘要: #include<stdio.h>#define Time int#define M 100typedef struct process{ char name[M];//进程名 int priority;//优先数 int reachtime;//到达时间 int needtime;//需要时间 i 阅读全文

posted @ 2016-04-29 09:25 01-李嘉秀 阅读(276) 评论(0) 推荐(0) 编辑

2016年4月20日

实验二 (1)先来先服务进程调度

摘要: #include<stdio.h>#define Time int#define M 100typedef struct process{ char name[M];//进程名 int priority;//优先数 int reachtime;//到达时间 int needtime;//需要时间 i 阅读全文

posted @ 2016-04-20 17:28 01-李嘉秀 阅读(418) 评论(0) 推荐(0) 编辑

2016年3月23日

实验一

摘要: 实验一、DOS使用命令实验 专业 网络工程 姓名 李嘉秀 学号 201406114301 一、 实验目的 熟练掌握用各种DOS命令-文件管理 熟练掌握DOS批处理命令 熟练掌握DOS网络管理 二、 实验内容和要求 (1) 在E盘中创建如下目录: (2)在shiyan1中创建2个文件: 三、 实验方法 阅读全文

posted @ 2016-03-23 22:05 01-李嘉秀 阅读(192) 评论(0) 推荐(0) 编辑

导航