CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - 进程

搜索资源列表

  1. banker

    0下载:
  2. 银行家算法(实现银行家算法的整个流程。从资源申请,到数据结构数值的修改,到安全性检测;循环资源申请,检测每次的安全状态,输出安全序列,直至所有进程执行完毕)-Banker' s algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1669
    • 提供者:ronny
  1. Banker

    0下载:
  2. 操作系统中经典的银行家算法的模拟程序,基于MFC对话框,可随意设定进程的个数和资源的个数-Classic bankers operating system simulation algorithm, based on MFC dialog box can be arbitrarily set the number of processes and resources, the number of
  3. 所属分类:Data structs

    • 发布日期:2017-05-09
    • 文件大小:1963743
    • 提供者:Meihua
  1. yinhangjia

    0下载:
  2. 银行家算法是一种最有代表性的避免死锁的算法。在避免死锁方法中允许进程动态地申请资源,但系 银行家算法 统在进行资源分配之前,应先计算此次分配资源的安全性,若分配不会导致系统进入不安全状态,则分配,否则等待。 -ankers algorithm is one of the most representative avoid deadlock algorithm. In avoiding deadlocks method allows processes to dynamically appli
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1693
    • 提供者:baichaochao
  1. Banker

    0下载:
  2. 使用银行家算法,编写和调试一个系统动态分配资源的简单模拟程序。 自此,每行表示进程对资源的请求; 当所有进程结束后或文件结束时,程序结束。 -Using the banker' s algorithm, write and debug a simple dynamic simulation program to allocate resources. Since then, each line that process requests for resources when
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:686
    • 提供者:Yanxingfu
  1. banker

    0下载:
  2. 用银行家算法 ,实现资源分配 ,具有显示或打印各进程依次要求申请的资源数以及依次分配资源的情况-With the banker' s algorithm, resource allocation, with the display or print the application of the process followed by the number of resources required and the allocation of resources in order
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:218186
    • 提供者:李倩
  1. Banker

    0下载:
  2. 利用银行家算法实现解决操作系统饥饿问题的算法,动态在控制台显示各个进程的运行情况。-Bankers algorithm used to solve the problem of hunger in the operating system, algorithm, dynamic in the console displays the operation of each process.
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:2025
    • 提供者:chenyiyu
  1. BANK

    0下载:
  2. 银行家算法 设计程序模拟预防进程死锁的银行家算法的工作过程。假设系统中有n个进程P1, … ,Pn,有m类可分配的资源R1, … ,Rm,在T0时刻,进程Pi分配到的j类资源为Allocationij个,它还需要j类资源Need ij个,系统目前剩余j类资源Workj个,现采用银行家算法进行进程资源分配预防死锁的发生-Banker
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1353
    • 提供者:freedom265442
  1. bankers-algorithm

    0下载:
  2. 银行家算法是一种最有代表性的避免死锁的算法。在避免死锁方法中允许进程动态地申请资源,但系统在进行资源分配之前,应先计算此次分配资源的安全性,若分配不会导致系统进入不安全状态,则分配,否则等待。为实现银行家算法,系统必须设置若干数据结构。-Banker' s algorithm is one of the most representative algorithm to avoid deadlock. Method to avoid deadlock in the process of dy
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:1736
    • 提供者:zhsenl
  1. process-of-scheduling

    0下载:
  2. 进程调度算法的部分源代码,C++语言环境-Part of the process of scheduling algorithm source code, C++ language environment
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:11046
    • 提供者:wym
  1. osBank

    0下载:
  2. 3、银行家算法 设request:是Pi进程的请求向量,当Pi发了资源请求后,系统按下述步骤检查: (1)如果Request[i]<= Need[i],则转向步骤(2); (2)若Request[i] <=Available,则转向步骤(3); (3)系统试探性地把要求的资源分配给进程Pi,并修改以下数据结构的值: Available=Available-Request[i]; Allocation[i]= Allocation[i]+ Request[i];
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:1122686
    • 提供者:fairybroken
  1. 1

    0下载:
  2. 进程状态迁移.写一个程序描述进程状态迁移过程,理解进程概念、状态转换及其控制-Process state transition. The process of writing a program that describes the status of the migration process, the process of understanding the concept of state transition and its control
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1079
    • 提供者:瓜哥
  1. Philosoper

    0下载:
  2. 哲学家进餐,进程同步问题,利用java语言实现的-Dining philosophers, process synchronization problem, the use of java language
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:690
    • 提供者:王马
  1. ProcessStatics

    1下载:
  2. 数据结构课程设计 1、系统进程统计(必做)(链表) [问题描述]   设计一个程序,每秒统计一次当前系统的进程状况,并按照内存使用自多到少排序打印输出相关信息。对已经结束的进程,另外给出一个列表,并显示该进程的结束时间和持续时间。 [基本要求] (1) 该题目要求使用两个链式线性表。一个链表存储当前活动进程,要求使用双向链表,排序要求是按照内存使用自多到少排序。另外一个链表存储已结束进程,要求使用单向链表,按照结束时间离当前时间的关系排序,最近的最前,最远的最后。
  3. 所属分类:Data structs

    • 发布日期:2017-05-16
    • 文件大小:3595936
    • 提供者:zhangchi
  1. Banker

    0下载:
  2. 操作系统书中的银行家算法,C语言实现。为P进程的类型资源分配的资源数-The book of the banker s algorithm operating system, C language. The type of process for the P number of resources allocation of resources
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:817
    • 提供者:hxl
  1. process

    0下载:
  2. 进程调度,利用C语言,运用先进先出等算法实现进程的调度-progress program,use C language ,use fifo ,sjf come to progress program.this is very inters.hope it will help you.it is not complex.
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:1308
    • 提供者:july
  1. xitong

    1下载:
  2. 通过实现哲学家进餐问题的同步深入了解和掌握进程同步和互斥的原理哲学家有N个,也定全体到达后开始讨论:在讨论的间隙哲学家进餐,每人进餐时都需使用刀、叉各一把,所有哲学家刀和叉都拿到后才能进餐。哲学家的人数、餐桌上的布置自行设定,实现刀和叉的互斥使用算法的程序实现。-Philosophers have N, is also scheduled to discuss after all reach: the gap in the discussion of dining philosophers, e
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:416245
    • 提供者:赛德华
  1. process_schedule

    0下载:
  2. 演示进程调度算法 使用的链表 包涵7个功能 4个算法-Process Scheduling Algorithm Demo
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:310145
    • 提供者:gaojinyu
  1. word1

    0下载:
  2. 1、设置多个就绪队列,并给队列赋予不同的优先级数,第一个最高,依次递减。 2、赋予各个队列中进程执行时间片的大小,优先级越高的队列,时间片越小。 3、当一个新进程进入内存后,首先将其放入一个对列末尾,如果在一个时间片 结束时尚未完成,将其转入第二队列末尾。 4、当一个进程从一个对列移至第n个队列后,便在第n个队列中采用时间片轮转执行完。 5、仅当时间片空闲时,才调度第二个队列中的进程。 -1, setting a plurality of the ready queue,
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:6053
    • 提供者:frog
  1. process

    0下载:
  2. 编写并调试一个模拟的进程调度程序,采用“最高优先数优先”调度算法对五个进程进行调度。 “最高优先数优先”调度算法的基本思想是把CPU分配给就绪队列中优先数最高的进程。   静态优先数是在创建进程时确定的,并在整个进程运行期间不再改变。 动态优先数是指进程的优先数在创建进程时可以给定一个初始值,并且可以按一定原则修改优先数。例如:在进程获得一次CPU后就将其优先数减少1。或者,进程等待的时间超过某一时限时增加其优先数的值,等等。 -there are no english,
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1491
    • 提供者:黄强
  1. construct

    0下载:
  2. 数据结构的课件,以及数据结构的演示系统,细化数据结构的实现进程-Data structures, courseware, and data structures demonstration system to refine the data structure to achieve process
  3. 所属分类:Data structs

    • 发布日期:2017-06-10
    • 文件大小:17744896
    • 提供者:lanyan
« 1 2 3 45 »
搜珍网 www.dssz.com