CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 搜索资源 - BANKER

搜索资源列表

  1. bank

    0下载:
  2. 用c++编的银行家算法-With c++ Made the banker s algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-12-07
    • 文件大小:12.79kb
    • 提供者:魏威
  1. caozuoxitong

    0下载:
  2. 关于银行家算法的操作系统课程设计,包括实验目的、运行结果等-Banker
  3. 所属分类:OS Develop

    • 发布日期:2017-04-03
    • 文件大小:104.67kb
    • 提供者:幸福一生
  1. banker_by_array

    0下载:
  2. 本程序为自己在学习操作系统时独立根据书上所述的银行家算法制作而成,包括一个数组输入函数(Sr()),数组输出函数(Pr())和一个判断函数(test()),并通过指针传递参数,可以自定义进程数目和资源种类数目(源程序限10个以内,可自行更改数组)。 注:本程序是在linux环境下通过gcc编译器编译成功的。若移植到windows环境下可能在汉字显示部分出现乱码。-This procedure for their own independence in learning, when the o
  3. 所属分类:OS Develop

    • 发布日期:2017-04-04
    • 文件大小:8.59kb
    • 提供者:
  1. yin

    0下载:
  2. 操作系统--银行家算法 实验目的: 1、对死锁避免中的银行家算法作进一步理解。 2、加深理解死锁的概念。 3、加深理解安全序列和安全状态的概念。 4、通过编程,掌握银行家算法分配资源的一步步实现过程。 -Operating system- bankers algorithm experimental purposes: 1, to avoid deadlock in the banker s algorithm for further understanding. 2,
  3. 所属分类:OS Develop

    • 发布日期:2017-03-30
    • 文件大小:9.26kb
    • 提供者:李小玲
  1. fifo

    0下载:
  2. 银行家算法是从当前状态出发,逐个按安全序列检查各客户中谁能完成其工作,然后假定其完成工作且归还全部贷款,再进而检查下一个能完成工作的客户。如果所有客户都能完成工作,则找到一个安全序列,银行家才是安全的。 ♦ 与预防死锁的几种方法相比较,限制条件少,资源利用程度提高了。 -Banker s algorithm is a departure from the current state, one by one according to the security check seq
  3. 所属分类:OS Develop

    • 发布日期:2017-04-05
    • 文件大小:1.25kb
    • 提供者:赵与
  1. BAN

    0下载:
  2. 死锁问题,关于银行家算法,解决死锁,是操作系统的,-Deadlock issues, on the banker s algorithm to resolve the deadlock is the operating system,
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:1.21kb
    • 提供者:peter
  1. bank

    0下载:
  2. .cpp,操作系统的银行家算法的C程序实验-. cpp, the operating system of the banker s algorithm C experimental procedures
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:1.34kb
    • 提供者:00
  1. 2

    1下载:
  2. 银行家算法可以避免死锁。算法结构 n : 系统中进程个数 m :系统中的资源类数 1)available(m):现有资源向量 2) max(n,m):资源最大申请量 3)allocation(n,m):资源分配矩阵 4)need(n,m):进程以后还需要的资源矩阵 5)request(n,m):进程申请资源矩阵-Banker s algorithm to avoid deadlock. Algorithm structure n: the system proc
  3. 所属分类:OS Develop

    • 发布日期:2017-04-07
    • 文件大小:1.03kb
    • 提供者:斜阳
  1. sisuobimian

    0下载:
  2. 死锁避免——银行家算法的模拟实现,通过模拟死锁避免的实现,加深对死锁避免,系统安全状态的理解.附有我的實验报告,源代码。-Deadlock Avoidance- Banker s Algorithm simulation achieved by simulating the deadlock avoid the realization of better understanding of the deadlock avoidance, system security status underst
  3. 所属分类:OS Develop

    • 发布日期:2017-04-05
    • 文件大小:239.5kb
    • 提供者:hyw
  1. yinghaijiasuanfa

    0下载:
  2. 这是我做的操作系统小设计 多资源银行家算法 包括了代码和文档-This is my operating system to do small design resources banker s algorithm includes code and documentation
  3. 所属分类:OS Develop

    • 发布日期:2017-04-03
    • 文件大小:200.69kb
    • 提供者:张志文
  1. 25

    0下载:
  2. 操作系统银行家算法 c++的代码 检验系统的安全算法-Operating system of Banker s Algorithm c++ Code inspection system security algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:19.1kb
    • 提供者:月月
  1. bank

    0下载:
  2. 银行家算法是一个操作系统中很重要的算法,实际中得到了广泛的利用。-Banker
  3. 所属分类:OS Develop

    • 发布日期:2017-04-24
    • 文件大小:19.7kb
    • 提供者:tt
  1. moneychanger

    0下载:
  2. 操作系统课程设计,银行家算法,用C++做的,当时得了优呢,分享下。-Operating systems curriculum design, banker' s algorithm, using C++ to do, when it got better, to share the next.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-13
    • 文件大小:2.39kb
    • 提供者:
  1. yinhanjia

    0下载:
  2. 典型的银行家算法,操作系统课程实验,非常好用的,大家-Banker' s algorithm, the operating system course experiment
  3. 所属分类:OS Develop

    • 发布日期:2017-04-14
    • 文件大小:2.82kb
    • 提供者:sun
  1. yinhangjiasuanfa

    0下载:
  2. 操作系统课程设计之银行家算法,经过老师验收,通过-Curriculum design of the operating system banker' s algorithm, after the teacher acceptance, through
  3. 所属分类:OS Develop

    • 发布日期:2017-04-12
    • 文件大小:1.3kb
    • 提供者:赵军
  1. yhjsf

    0下载:
  2. 本程序较好的完成了银行家算法,相比其他程序有较大的改进-Banker' s Algorithm
  3. 所属分类:MacOS develop

    • 发布日期:2017-04-01
    • 文件大小:227.75kb
    • 提供者:李为
  1. caozuoxitong

    0下载:
  2. 操作系统课程设计 内涵spooling Rsa加密 生产者与消费者 银行家算法 内容简单 适合初学者 -Curriculum design content of the operating system spooling Rsa encryption algorithm banker producers and consumers simple and suitable for beginners content
  3. 所属分类:OS Develop

    • 发布日期:2017-05-10
    • 文件大小:1.99mb
    • 提供者:付斌
  1. yinhang

    0下载:
  2. 实现银行家算法,对学生非常有用,在大学操作系统中都会用到-The realization of banker' s algorithm, is very useful to students in the University of the operating system will be used
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:666byte
    • 提供者:dingding
  1. bank

    0下载:
  2. 银行家算法,操作系统的安全状态和安全序列,死锁和避免死锁的银行家算法-Banker' s algorithm, the operating system' s security status and security sequence, deadlock and the bankers algorithm avoid deadlock
  3. 所属分类:OS Develop

    • 发布日期:2017-03-30
    • 文件大小:1.34kb
    • 提供者:xapql
  1. Banker_algorithm

    0下载:
  2. 一个实现操作系统银行家算法的vc++程序,银行家算法全过程,包括MAX,NEND等资源的设定都由txt文档提供。-A banker' s algorithm to achieve the operating system of the vc++ program, the entire process of banker' s algorithm, including the MAX, NEND settings and other resources provided by the
  3. 所属分类:OS Develop

    • 发布日期:2017-04-04
    • 文件大小:16kb
    • 提供者:beyond
« 1 2 3 45 6 7 8 9 10 »
搜珍网 www.dssz.com