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

搜索资源列表

  1. sisuojianceyufenxi

    0下载:
  2. 用矩阵存储资源分配表,根据检测后的资源等待表判断是否存在死锁。-Matrix storage resource allocation table, according to the resources of post-test to determine whether there is deadlock waiting for tables.
  3. 所属分类:Windows CE

    • 发布日期:2017-05-06
    • 文件大小:1383771
    • 提供者:zaini
  1. yinhangjiasuanfa

    0下载:
  2. 用银行家算法实现资源分配。设计五个进程{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
  3. 所属分类:OS Develop

    • 发布日期:2017-04-02
    • 文件大小:1480
    • 提供者:fujiao
  1. YINHANGJIA

    0下载:
  2. 用C语言写的一个关于银行家算法调度的程序,实现对资源的动态申请和分配。-Written in C language using a scheduling program on the banker' s algorithm to realize the dynamic application and resource allocation.
  3. 所属分类:Other windows programs

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

    0下载:
  2. 这是一个操作系统课程设计,能够实现用进程并发中的资源分配方法预防死锁。-This is an operating system, curriculum design, can be achieved concurrent with the process of resource allocation methods to prevent deadlock.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:697622
    • 提供者:王陶然
  1. yinhangjia

    0下载:
  2. 实验目的:了解多道程序系统中,多个进程并发执行的资源分配。 管理员可以把一定数量的作业供多个用户周转使用,为保证作业的安全管理员规定: 当一个用户对作业的最大需求量不超过管理员现有的资金就要接纳该用户; 用户可以分期贷款,但贷款的总数不能超过最大需求量; 当管理员现有的作业不能满足用户的沿需数时,对用户的请求可推迟支付,但总能使用户在有限的时间里得到请求; 当用户得到所需的全部作业后,一定能在有限的时间里归还所有的作业。 -Experimental Objectiv
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-31
    • 文件大小:1777
    • 提供者:陈莹华
  1. dongtaiguihua-suanfa-source-code

    0下载:
  2. 分别用动态规划的算法,用手工解决资源分配的问题。另一个是编程解决下面的问题: 一凸8 边形P 的顶点顺时针为{v1,v2,… ,v8},任意两顶点间的线段的权重由矩阵D 给出。若vi 与vj 是P 上不相邻的两个顶点,则线段vivj 称为P 的一条弦。求P 的一个弦的集合T,使得T 中所有的弦恰好将P 分割成互不重迭的三角形,且各三角形的权重之和为最小(一个三角形的权重是其各边的权重之和)。-Respectively dynamic programming algorithm, hand a
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-29
    • 文件大小:322992
    • 提供者:liuxiaoxia
  1. suanfa

    0下载:
  2. 计算机算法中用到的经典算法。包括01背包,多段图,资源分配问题,子数合集等。-Computer algorithms used in the classical algorithm. Including 01 backpack, multi map, resource allocation, the number of sub-collection, etc..
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:9941
    • 提供者:wuxi
  1. jisuanjifangzhen

    0下载:
  2. 计算机仿真,怎样构建Ad Hoc网络以及Ad Hoc网络中的区域划分和资源分配问题-Computer simulation, how to build networks and Ad Hoc Ad Hoc Networks by region and resource allocation
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:14417
    • 提供者:hezhilong
  1. 200751112499982_136Z_Com

    0下载:
  2. 在Winsock i/o 模型中CPIO无疑是性能最好的,当然高性能是耗费系统可观的资源作代价的,在多连接和高数据吞吐率方面要求高的应用中才会用此模型,所以我认为不要盲目地使用此模型。 在具体应用中只要继承此类然后重写其中的几个虚函数即可,要注意的几点是:1,CPIO用到多线称,所以对有些资源必须同步2,在数据收发当中会平凡分配和释放内存资源,这种平凡的资源分配和释放回消耗系统一定的资源,所以可以用一种方法尽量减少这种操作,此类中用到了“内存池“-In the Winsock i/o
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:6285
    • 提供者:xiaofeng
  1. bankerAlgorithm

    0下载:
  2. 设计一个银行家算法,实现对N个进程和M种系统资源进行银行家算法判定和资源分配;并根据银行家算法的要求设计相应的数据结构,通过输入进程的个数,资源的种类,各个资源的最多数量,各个进程的Max,,Allocation,Need,然后对算法进行检测,判断是否能产生安全序列。-Design of a banker' s algorithm, to realize the process and the M N-species system resources determine the banke
  3. 所属分类:OS Develop

    • 发布日期:2017-05-12
    • 文件大小:2721141
    • 提供者:何志芬
  1. banker

    0下载:
  2. 共享资源分配与银行家算法 [问题描述] 本题主要内容是模拟实现资源分配。银行家算法是避免死锁的一种重要方法,本实验要求用高级语言编写和调试一个简单的银行家算法程序。加深了解有关资源申请、避免死锁等概念,并体会和了解死锁和避免死锁的具体实施方法。 通过对这个算法的设计,让学生能够对书本知识有更深的理解,在操作和其它方面有更高的提升。 -Share resource allocation algorithm with bankers [Problem Descr iption] T
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-25
    • 文件大小:11294
    • 提供者:yuebo
  1. wuxianhezuiwod

    0下载:
  2. 无线合作分集网络中资源分配策略研究的论文-Cooperative diversity in wireless network resource allocation policy research papers
  3. 所属分类:matlab

    • 发布日期:2017-05-08
    • 文件大小:1818576
    • 提供者:谭乐平
  1. GAs_100average

    0下载:
  2. 无线通信系统的调度算法仿真程序,可以参考说明文件进行学习-Wireless communication system simulation program scheduling algorithm, can refer to the documentation to learn
  3. 所属分类:matlab

    • 发布日期:2017-04-06
    • 文件大小:440984
    • 提供者:dominic
  1. mpeg_MLWDF

    0下载:
  2. 资源调度算法。MPEG业务在MLWEP准则下的资源调度性能。-Resource allocation algorithm. MPEG business MLWEP resource scheduling performance criteria.
  3. 所属分类:matlab

    • 发布日期:2017-03-28
    • 文件大小:2023
    • 提供者:胡晗
  1. voip_pf

    0下载:
  2. 资源调度算法。VOIP业务在PF准则下调度的性能比较。-Resource allocation algorithm. VOIP business in the PF scheduling performance comparison criterion.
  3. 所属分类:matlab

    • 发布日期:2017-03-30
    • 文件大小:1489
    • 提供者:胡晗
  1. ngNetworkPerformancewithContentSwitchingServerFire

    0下载:
  2. 以本关于网络性能优化的好书,常用的网络技术都有所涉及,而且材料很丰富。-Content switching technology optimizes resource allocation across networks and over the Internet, and is fast becoming a standard in enterprise and ISP networks. Optimizing Network Performance with Content Sw
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-05-12
    • 文件大小:3014610
    • 提供者:刘金良
  1. fcfs

    0下载:
  2. 作业调度算法资源分配要求: 主存分配要求:a优先分配主存的低地址区域且不准移动已在主存中的作业。 b 主存中参与多道运行的作业平分CPU时间 磁带机和打印机:采用静态分配,即在作业运行前就把所需的设备分配给它 -Resource allocation algorithm for job scheduling requirements: allocation of main memory requirements: a low priority in the allocatio
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-02
    • 文件大小:48481
    • 提供者:leo
  1. resource

    0下载:
  2. 编写系统进行资源调度随机动态分配程序,即只要系统当前剩余资源满足进程的当前要求,就立即将资源分配给进程-Resource scheduling system for the preparation of stochastic dynamic allocation process, as long as the current system processes the remaining resources to meet current requirements, to allocate res
  3. 所属分类:OS Develop

    • 发布日期:2017-03-30
    • 文件大小:1033
    • 提供者:xurong
  1. A_Low_Complexity_Algorithm_for_Proportional_Resour

    0下载:
  2. A Low Complexity Algorithm for Proportional Resource Allocation in OFDMA Systems
  3. 所属分类:matlab

    • 发布日期:2017-04-04
    • 文件大小:168162
    • 提供者:几又
  1. anderlind.tar

    0下载:
  2. Resource Allocation in Multi-Service Wireless Access Networks
  3. 所属分类:SCM

    • 发布日期:2017-04-10
    • 文件大小:1102414
    • 提供者:Amita
« 1 2 3 4 5 67 8 9 10 11 ... 40 »
搜珍网 www.dssz.com