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

搜索资源列表

  1. yinhangjiasuanfa

    0下载:
  2. 在避免死锁的方法中,所施加的限制条件较弱,有可能获得令人满意的系统性能。在该方法中把系统的状态分为安全状态和不安全状态,只要能使系统始终都处于安全状态,便可以避免发生死锁。 银行家算法的基本思想是分配资源之前,判断系统是否是安全的 若是,才分配。它是最具有代表性的避免死锁的算法。 -In the deadlock avoidance method, the constraints imposed by weak, it is possible to obtain satisfactory
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:4137
    • 提供者:郭强生
  1. bankersuanfa

    0下载:
  2. 处理机调度与死锁,银行家算法来模拟!用C++实现!-Processor scheduling and deadlock, the banker' s algorithm to simulate! In C++ to achieve!
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:43100
    • 提供者:柯柯
  1. yinhangjiasuanfa

    0下载:
  2. 银行家算法代码,能够实现银行家算法安全性检查,等等。-Banker s algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-04-15
    • 文件大小:7810
    • 提供者:李嘉琪
  1. BANK1

    0下载:
  2. 银行家算法,安全性算法的源代码,有需要的可以下载-Banker s algorithm, security algorithms
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:890049
    • 提供者:正街
  1. 11

    0下载:
  2. 进程的死锁避免算法(银行家算法实现) 一:实验目的: 根据银行家算法的思想,编写程序,解决并发进程的死锁问题。 二:实验要求: (1)本实验要求设计并实现银行家算法。银行家算法是死锁避免的经典算法,其核心思想是:进程动态地申请资源,每次申请资源时系统都执行安全状态检查算法判断本次申请是否会造成系统处于不安全状态,如果不安全则阻塞进程;如果安全状态,则完成资源分配。 (2)安全状态检查算法的思想是找到一个安全序列,使所有进程都能执行完毕。如果找到,则处于安全状态,否则为不安全状
  3. 所属分类:OS Develop

    • 发布日期:2017-03-22
    • 文件大小:10269
    • 提供者:吴起
  1. bank

    0下载:
  2. 该程序为银行家算法,其中还有安全性算法函数。内附有该程序的实验题目,供大家参考!-The program for the banker s algorithm, in which there is security algorithms function. The experimental program included a subject for your reference!
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:385566
    • 提供者:姜宏
  1. bank

    0下载:
  2. 实现了操作系统课程中的银行家算法,c++代码,调度算法,解决死锁问题。-The operating system curriculum in the banker s algorithm, c++ code, scheduling algorithm, to solve the deadlock problem.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-30
    • 文件大小:679584
    • 提供者:象棋
  1. BankerCal

    0下载:
  2. 银行家算法,很适合初学者学习操作系统使用,写的很清楚易懂的算法。-The banker s algorithm , it is suitable for beginners to learn the operating system , written in very clear and understandable algorithm .
  3. 所属分类:OS Develop

    • 发布日期:2017-04-13
    • 文件大小:2326
    • 提供者:jerryhu
  1. os6

    0下载:
  2. “银行家算法”。 其实验目的是: 1 了解银行家算法的机制,学会用银行家算法为进程分配资源的意义。 2 学会利用银行家算法避免死锁的方法 -"The banker s algorithm." The purpose of the experiment is as follows: An understanding of the mechanism of the banker s algorithm, the significance of resources alloca
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:1538
    • 提供者:pang
  1. YH

    0下载:
  2. 银行家算法,使用FMC界面,VS2008编程,操作系统进程管理。-Banker s algorithm, using the FMC interface, VS2008 programming, operating systems process management.
  3. 所属分类:OS Develop

    • 发布日期:2017-05-30
    • 文件大小:12872092
    • 提供者:fuguohe
  1. yin-hang-jia-suan-fa-

    0下载:
  2. 计算机操作系统中的典型的死锁避免方法,银行家算法,用VC++6.0写的,已经实现,希望可以帮助大家。-Banker s algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:5715
    • 提供者:luying
  1. bank_algo

    0下载:
  2. 编制银行家算法通用程序,并检测思考题中所给状态的安全性-Given the state of security in the preparation of the banker s algorithm common procedures, and to detect think the question
  3. 所属分类:Data structs

    • 发布日期:2017-05-29
    • 文件大小:11279119
    • 提供者:胡俊杰
  1. mybank.c

    0下载:
  2. 纯c实现的银行家算法,采用pthread多线程编程,模拟资源的安全有效分配-the banker‘s algorithm based on pthread and safety algorithm
  3. 所属分类:Process-Thread

    • 发布日期:2016-04-22
    • 文件大小:1024
    • 提供者:zhang
  1. 123

    0下载:
  2. 模拟实现银行家算法,用银行家算法实现资源分配和安全性检查。通过本次实验,使学生加深对死锁概念的理解和掌握,并培养学生对操作系统开发的兴趣与应用能力。-Simulation of the banker' s algorithm, the banker' s algorithm for resource allocation and security checks. Through this experiment, to deepen students ' understandin
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:1032
    • 提供者:朱华
  1. caozuoxitong-

    0下载:
  2. 自己动手做的操作系统实训,关于银行家算法的-Yourself to do the training of the operating system, on the banker' s algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:82510
    • 提供者:钟帅
  1. os-YIN-HANG-JIA

    0下载:
  2. 银行家算法,个人原创经典,昆明理工大学操作系统实验-Banker' s algorithm, the individual original classic, Kunming University of Science and Technology operating system experiment
  3. 所属分类:OS Develop

    • 发布日期:2017-06-17
    • 文件大小:27387120
    • 提供者:刘召
  1. bank

    0下载:
  2. 计算机操作系统中银行家算法的模拟实现,算法简洁明了,容易读懂,并附有注释-Banker' s algorithm simulation in computer operating systems, algorithms, concise, easy to read, with annotations
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:136983
    • 提供者:林秀
  1. yinhang

    0下载:
  2. 银行家算法,完整代码实现!无需调试,即可运行!-Banker' s algorithm, to achieve complete code! Need to debug, you can run!
  3. 所属分类:OS Develop

    • 发布日期:2017-04-26
    • 文件大小:7796
    • 提供者:yifan
  1. BankersAlgorithm

    0下载:
  2. 操作系统 银行家算法 java实现 java代码-Operating system, the banker' s algorithm java java code
  3. 所属分类:Java Develop

    • 发布日期:2017-04-11
    • 文件大小:1185
    • 提供者:dskuga
  1. Bank

    0下载:
  2. 以从文件读入的方法,实现了操作系统中预防进程死锁的银行家算法。-Process deadlock prevention in the operating system to read from the file into the banker' s algorithm.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-03
    • 文件大小:543088
    • 提供者:Dwxiao
« 1 2 ... 20 21 22 23 24 2526 27 28 »
搜珍网 www.dssz.com