CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - 动态分配 算法

搜索资源列表

  1. 最佳适应算法 信安 陆华锋 20022638

    0下载:
  2. 最佳适应算法是动态内存分区分配算法的一种。所谓“最佳”是指每次为作业分配内存时,总是把能满足要求、又是最小的空闲分区分配给作业,避免“大材小用”。为了加速寻找,该算法要求将所有的空闲分区按其内容以从小到大的顺序形成一空闲分区链。这样,第一次找到的能满足要求的空闲区,必然是最佳的。-best adaptation algorithm is a dynamic memory allocation through an algorithm. The so-called "best"
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:36.31kb
    • 提供者:快乐人儿
  1. winopticpualgrothm

    0下载:
  2. windows内核最优化算法,cpu资源动态分配
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:3.54kb
    • 提供者:刘田
  1. systemcode

    0下载:
  2. 系统工程课本中框图实现 特点是 1、 运用动态存储,节省空间。 2、 算法严格按照框图,便于理解 3、 输入输出较简洁,而且满足要求。 这三个程序的主要缺点是: 1、 输入输出界面不够友好,用DOS界面交互,不如图形界面好 2、 输入必须以固定格式,没有安全性检验,一旦输错必须重新输入; 3、 在“矩阵划分”的程序中,输入不够灵活,同时由于动态分配内存,矩阵元素定位时间长,时间复杂度增加。
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:6.25kb
    • 提供者:郝红星
  1. neicun

    0下载:
  2. 动态分区分配方式的模拟。理解内存分配的几种方式的基本原理,如:单一连续分配方式、固定分区分配方式和动态分区分配方式。通过编写程序实现动态分区分配方式,进一步理解动态分区分配方式中使用的数据结构和分配算法,加深对动态分区存储管理方式及其实现过程的理解。
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:5.43kb
    • 提供者:has
  1. 动态分区分配算法的模拟

    0下载:
  2. 存储管理---动态分区分配算法的模拟 大学本科,--- Storage Management Allocation Algorithm Dynamic Simulation Division undergraduate
  3. 所属分类:Windows编程

    • 发布日期:2017-03-22
    • 文件大小:27.41kb
    • 提供者:zpwz_yz
  1. DynamicMemoryAllocate

    0下载:
  2. 根据操作系统的内存动态分配算法,模拟实现一个内存分配模拟系统。-Dynamically according to the operating system memory allocation algorithm to simulate memory allocation to achieve a simulation system.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-24
    • 文件大小:411.05kb
    • 提供者:海洋
  1. mp

    0下载:
  2. 这是我在操作系统实验中独立编写的一个模拟动态分区存储分配算法的程序,采用最佳适应算法。在VC++6.0下编译通过,程序的输出结果经过多次测试,没有发现问题。-This is my experiment in the operating system independent prepared a simulated dynamic partitioning storage allocation algorithm procedures, the use of best-fit algorithm.
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-31
    • 文件大小:7.79kb
    • 提供者:daisichong
  1. FIRST1

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

    • 发布日期:2017-03-28
    • 文件大小:1.26kb
    • 提供者:sylvia
  1. 122333

    1下载:
  2. 课题八:存储管理---动态分区分配算法的模拟: 要求设计主界面以灵活选择某算法,且以下算法都要实现:首次适应算法、循环首次适应算法、最佳适应算法; -Eight topics: storage management--- dynamic partitioning allocation algorithm simulation: the main interface to design a flexible choice of a certain algorithm, and should
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-16
    • 文件大小:9.05kb
    • 提供者:张海华
  1. primecalculator

    0下载:
  2. 计算百亿内素数个数的效率极高的算法,采用动态分配内存和倒筛法,文件夹内附有报告。-Calculating the number of prime numbers in tens of billions of extremely efficient algorithms, dynamic allocation of memory and inverted sieve method, the folder containing the report.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-17
    • 文件大小:80.73kb
    • 提供者:slh
  1. banker

    0下载:
  2. 本设计的目的是通过编写和调试一个系统动态分配资源的简单模拟程序,观察死锁产生的条件,并采用适当的算法,有效地防止和避免死锁的发生。具体要求如下: ⑴模拟一个银行家算法; ⑵初始化时让系统拥有一定的资源; ⑶用键盘输入的方式申请资源; ⑷如果预分配后,系统处于安全状态,则修改系统的资源分配情况; ⑸如果预分配后,系统处于不安全状态,则提示不能满足请求。 -The purpose of this design through the writing and debugging
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-25
    • 文件大小:239.43kb
    • 提供者:elaine
  1. DTKJFP

    0下载:
  2. VC++实现的动态空间分配 用的是两种算法实现-VC++ to achieve the dynamic space allocation are two algorithms used to achieve
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:394.46kb
    • 提供者:hghh
  1. 905186

    0下载:
  2. 操作系统课程设计\存储管理---动态分区分配算法的模拟-Operating systems curriculum design \ storage management--- the distribution of dynamic partitioning of the simulation algorithm
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-07
    • 文件大小:12.25kb
    • 提供者:lys
  1. PkgClnup

    0下载:
  2. 最佳适应动态分配算法在宏观上每次为作业分配后存储空间所切割下的剩余部分,总是最小的,这样,在存储器中会留下许多这样难以利用的小空闲区。所以本算法就是将每次调出作业后释放出来的空间与最小的空间相加,从而减少那些难以利用的小空闲区的存在!-fhsdio jfkl gjl jklasdj gkp sjdlp jgl dsjgflsd hjgl hgsdpg
  3. 所属分类:Other systems

    • 发布日期:2017-04-04
    • 文件大小:901byte
    • 提供者:caichunsheng
  1. OS_source_code

    0下载:
  2. 计算机操作系统实验——动态分区分配方式的模拟:采用首次适应算法和最佳适应算法。-Computer Operating System Experiment- Simulation of dynamic partitioning distribution: The first-fit algorithm and the best-fit algorithm.
  3. 所属分类:Other systems

    • 发布日期:2017-03-27
    • 文件大小:2.25kb
    • 提供者:Splendid Sun
  1. firstFit

    0下载:
  2. 这是一个操作系统的一个首次内存分配算法,用于模拟操作系统中的存储器动态分区分配。-This is an operating system for the first time a memory allocation algorithm, used to simulate the operating system memory allocation of dynamic partitioning.
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-27
    • 文件大小:172.86kb
    • 提供者:qxianbo
  1. sy5

    1下载:
  2. 动态分区分配算法的模拟  初始化功能:内存状态设置为初始状态。  分配功能:要求至少使用两种算法,用户可以选择使用。  回收功能:  空闲块的合并:即紧凑功能,用以消除碎片。当做碎片整理时,需要跟踪分配的空间,修改其引用以保证引用的正确性。  显示当前内存的使用状态,可以使用表格或图形。 -Dynamic partition allocation algorithm simulation &#
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:320.65kb
    • 提供者:陈婷婷
  1. Dispatch

    0下载:
  2. 操作系统中的存储空间的动态分配算法的具体实现方法-Operating system dynamically allocated storage space in the proposed algorithm method
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-05
    • 文件大小:1.24kb
    • 提供者:chencl
  1. EPON动态带宽分配代码

    0下载:
  2. EPON与WiMAX(Worldwide interoperability for Microwave Access,全球微波互联接入)结合,提出新EPON信息传输模型,建立新的综合DBA算法即双重优先级算法。(Combining EPON with WiMAX global microwave interconnection, a new EPON information transmission model is proposed, and a new integrated DBA algo
  3. 所属分类:其他

    • 发布日期:2018-01-03
    • 文件大小:1kb
    • 提供者:以太网
  1. 银行家算法

    1下载:
  2. 根据银行家算法的基本思想编写和调试一个实现动态资源分配的模拟程序并能够有 效地防止和避免死锁的发生。(According to the basic idea of banker's algorithm, we compile and debug a simulation program to realize dynamic resource allocation, and we can have To prevent and avoid the occurrence of deadlock.
  3. 所属分类:其他

    • 发布日期:2018-05-01
    • 文件大小:1.46mb
    • 提供者:超儿曾
« 12 3 4 »
搜珍网 www.dssz.com