搜索资源列表
-
1下载:
银行家算法的虚拟实现- The banker algorithm hypothesized realizes
-
-
0下载:
银行家算法的C语言实现。操作系统中的银行家算法。-Banker' s algorithm for C language. The operating system in the banker' s algorithm.
-
-
0下载:
用银行家算法实现资源分配。设计五个进程{0, 1, 2, 3, 4}共享三类资源{A,B,C}的系统, {A,B,C}的资源数量分别为10,5,7。进程可动态地申请资源和释放资源,系统按进程的申请动态地分配资源,要求程序具有显示和打印各进程的某一个时刻的资源分配表和安全序列;显示和打印各进程依次要求申请的资源号以及为某进程分配资源后的有关资源数据。-With the banker' s algorithm to achieve resource allocation. Designed t
-
-
0下载:
处理机调度与死锁,银行家算法来模拟!用C++实现!-Processor scheduling and deadlock, the banker' s algorithm to simulate! In C++ to achieve!
-
-
0下载:
实现了操作系统课程中的银行家算法,c++代码,调度算法,解决死锁问题。-The operating system curriculum in the banker s algorithm, c++ code, scheduling algorithm, to solve the deadlock problem.
-
-
0下载:
用C++实现的银行家算法,实现如何避免死锁翻译,很好用的。-Banker' s algorithm implemented in C++, how to avoid the deadlock translation and good use.
-
-
0下载:
代码是操作系统中银行家算法的简单实现。通过简单的c语言控制台程序让人理解银行家算法的计算过程。-Simple implementation of the code is the the banker algorithm in the operating system. Through a simple console program c language people understand the banker' s algorithm calculation process.
-
-
0下载:
使用c++编写的银行家算法的实现,是操作系统课程设计的任务,列出了所有的可能的安全序列,在vs2010上运行通过。-Use c++ prepared bankers algorithm, is the operating system of curriculum design task lists all possible security sequence in vs2010 run through.
-
-
0下载:
操作系统银行家算法源码,这个是我做课程设计时编写的C语言的银行家算法-Operating system bankers algorithm source code, this is what I do curriculum designed to prepare the banker' s algorithm in C language
-
-
0下载:
//程序说明:
// 一、开发语言:C#语言
//二、本程序模拟的是课本 银行家算法之例 编写的。
// 即系统中有五个进程{0,1,2,3,4}和三类资源{A,B,C},各进程的初始资源分配情况及各资源的总数量均
//参照该例子。
//三、本程序中共四个函数分别为:show(),apply(),test(),及主函数main()
// 其中:
// 1、show()的功能为:直观的列出系统某时刻的资源分配情况。
// 2、apply()的功能为:进程发出资
-