搜索资源列表
-
0下载:
操作系统中的经典问题:银行家算法 - In operating system classical question: Banker algorithm
-
-
0下载:
操作系统实验指导书(用c语言实现了操作系统里的几个经典算法!)-Operating experimental instructions (with c language to implement the operating system in several classical algorithm!)
-
-
0下载:
实现操作系统的PV操作中的经典算法——生产者消费者-PV operation to achieve the operating system in the classical algorithm- producers and consumers
-
-
0下载:
这是操作系统的经典算法——银行家算法,希望大家好好珍惜吧-This is the operating system of the classical algorithm- Banker' s algorithm, I hope you cherish it! ! !
-
-
0下载:
进程的死锁避免算法(银行家算法实现)
一:实验目的:
根据银行家算法的思想,编写程序,解决并发进程的死锁问题。
二:实验要求:
(1)本实验要求设计并实现银行家算法。银行家算法是死锁避免的经典算法,其核心思想是:进程动态地申请资源,每次申请资源时系统都执行安全状态检查算法判断本次申请是否会造成系统处于不安全状态,如果不安全则阻塞进程;如果安全状态,则完成资源分配。
(2)安全状态检查算法的思想是找到一个安全序列,使所有进程都能执行完毕。如果找到,则处于安全状态,否则为不安全状
-