搜索资源列表
进程调度算法实验报告
- 关于进程的调度算法 实验设计: (1)设计一个有N个进程共行的进程调度程序。每个进程由一个进程控制块 PCB表示。进程控制块包括以下信息:进程名,进程优先数,进程需要运行的时间,占用CPU的时间以及进程的状态等。 (2)本调度程序用优先数调度算法。 (3)编写程序并调试运行。 -on the process of scheduling algorithm Experimental Design : (1) design a process of a total of
producer_and_consumerv1.1
- 这同样是我课程设计的代码,不过在前一个代码的基础上加如了新的算法了避免死琐的发生-This is the same curriculum design code, but a former code on the basis of increase as a new algorithm to avoid the occurrence of death Suo
osdd
- 在多道程序和多任务系统中,系统内同时处于就绪状态的进程可能有若干个。也就是说能运行的进程数大于处理机个数。为了使系统中的进程能有条不紊地工作,必须选用某种调度策略,选择一进程占用处理机。设计了一个模拟处理机调动算法-in multi-channel and multi-task procedure system, the system in place at the same time within the state of the process may have several. That
caozuo02050210
- 操作系统课程设计----进程调度 LRU算法 内附设计报告-courses on operating system design process-scheduling algorithm containing LRU design report
caozuoxitongkechengsheji
- 操作系统课程设计: 编写并调试一个单道批处理系统的作业调度程序。要求: (1)至少有四种的作业调度算法。 (2)能根据不同的调度算法算出每个作业的周转时间和带权周转时间,并通过一组作业算出系统的平均周转时间和平均带权周转时间,比较各种算法的优缺点。 (3)设计一个实用的用户界面,以便选择不同的作业调度算法。 -courses on operating system design : the preparation and debugging a single channel
mpichbingxingdiama0711
- 基于cannon算法的MPI环境的并行程序原代码 能够计算超大型矩阵相乘,本人的毕业设计 绝对经典-cannon algorithm based on the environment of MPI parallel programming code to calculate the original super matrix multiplication. I graduated from the absolute classic design
优先级调度算法
- 设计一个有 N个进程并发运行的进程调度程序,进程调度算法 :最高优先数优先的调度算法 。本实验模拟在单处理机环境下处理机的调度,了解处理机调度的过程。-design is a complicated process N-running process scheduler, process scheduling algorithm : the highest priority to a few priority scheduling algorithm. The experimental simu
另一个优先级调度算法
- 设计一个有 N个进程并发运行的进程调度程序,进程调度算法 :最高优先数优先的调度算法 。本实验模拟在单处理机环境下处理机的调度,帮助了解处理机调度的过程。-design is a complicated process N-running process scheduler, process scheduling algorithm : the highest priority to a few priority scheduling algorithm. The experimental si
scan与cscan算法模拟磁盘调度实验
- 此为操作系统实验报告: scan,cscan算法模拟磁盘调度 内含:程序流程图 设计思路 主要源码等等。 简介:磁盘是一种高速、大容量、旋转型、可直接存取的存储设备。它作为计算机系统的辅助存储器,担负着繁重的输入输出任务、在多道程序设计系统中,往往同时会有若干个要求访问磁盘的输入输出请求等待处理。系统可采用一种策略,尽可能按最佳次序执行要求访问磁盘的诸输入输出请求。-operating system for this experiment : scan, cscan scheduling alg
dd
- 进程调度 设计进程控制块PCB表结构(与实验一的结构相同),分别适用于优先数调度算法和循环轮转调度算法。 ②建立进程就绪队列。对两种不同算法编制入链子程序。 ③编制两种进程调度算法:1)优先数调度;2)循环轮转调度 -The process of scheduling the design process control block PCB table structure (with the same structure as the experimental one), were
chulijidiaodushiyanbaogao
- 操作系统处理机调度实验报告,包括优先权调度算法和时间片轮转算法的源码、设计思想和程序结果截屏-Processor Scheduling experimental operating system, including priority scheduling algorithm and the time slice Round Robin source, design ideas and the results of the proceedings Screenshots
Short_Process_First
- 本课程设计要求用高级语言编写和调试一个调度算法采用照顾运行时间较短时间进程的调度程序,以加深对进程的概念及进程调度算法的理解。-The curriculum design requires high-level language writing and debugging of a scheduling algorithm using shorter running time to take care of the process of scheduling procedures in orde
jcgl
- (1)设计进程控制块PCB表结构,分别适用于优先权调度算法和时间片轮转调度算法。 PCB结构包括以下信息:进程名、进程优先数(或轮转时间片),进程所占用的CPU时间,进程的状态,当前队列指针等。根据调度算法的不同,PCB结构的内容可以作适当的增删。 (2)建立进程就绪队列。对两种不同算法编制入链子程序。 (3)编制两种进程调度算法:a)优先数调度;b)时间片轮转调度。允许用户在程序运行时选择使用某一种调度算法。-(1) design process control blo
DataStructuresandAlgorithms
- 主要描述了多任务下数据结构与算法的设计和运用-Mainly describes the mission of many data structures and algorithm design and the use of
Reader-Writer_Problem)
- 用多线程同步方法解决读者-写者问题。为每个读者/写者产生一个线程,设计正确的同步算法-With multi-thread synchronization methods to solve the reader- writer problem. For each reader/writer to produce a thread, correct synchronization algorithm design
Cycle-time-slice-rotary-algorithm
- 实验任务 设计一个程序,根据不同的调度算法模拟操作系统对进程的调度。 调度算法: 时间片循环法 1、 设计进程控制块PBC表结构,适用循环时间片轮转算法。 2、 PBC结构通常包括以下信息:进程名、进程优先数、轮转时间片、进程的CPU时间,进程状态等。根据调度算法不同,PCB结构可作适当的调整。 3、 建立进程队列。对不同的算法编制不同的入链程序。 程序要求达到的运行效果:在设置好进程数量、调度算法后,系统能按设定的参数运行,并在屏幕上交替显示就绪队列和完成队列的进程名等
Bankers-algorithm-simulation
- 银行家算法模拟,适用于计算机操作系统课程设计的银行家算法的实现。-Bankers algorithm simulation for realization of computer courses on operating system design bankers algorithm.
Operating-system-course-design
- 上传的文档为本人操作系统的课程设计,程序主要实现操作系统的进程管理功能,其中涉及诸如FIFO、时间片轮转等多个算法的比较-Upload documents for my operating system, curriculum design, the program is mainly to achieve the operating system process management functions, which involves such as FIFO, time slice rota
feklwu790
- 数据结构原代码,从事算法设计与分析技术,不错的源码-Data structure of the original code, is engaged in the algorithm design and analysis technology, good source
pphwrl
- 合并排序的算法实现,对于学习算法设计的初学者很有帮助(Merge sort algorithm, is very helpful for beginners learning algorithm design)