CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 最佳适应算法

搜索资源列表

  1. fenqu

    0下载:
  2. 模拟内存分区分配和回收(首次适应算法,最佳适应算法)-Simulation of geographical distribution and recovery of memory (the first adaptation algorithm, the best adaptation algorithm)
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-01
    • 文件大小:1564
    • 提供者:游审
  1. Optimal

    0下载:
  2. 存储管理中页面置换算法性能测试 要求:设系统采用固定分配局部置换的存储分配策略,编写仿真程序对下述页面 置换算法进行性能测试,并对结果进行分析和比较。 (1) 最佳适应(Optimal)页面置换算法; (2) 先进先出(FIFO)页面置换算法; (3) 最近最久未使用(LRU)页面置换算法; (4) 最少使用(LFU)页面置换算法。 要求可适用于键盘输入和自动产生随机页面走向序列两种数据输入方式。-Memory management page repla
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-31
    • 文件大小:2083
    • 提供者:pauly_917
  1. q

    0下载:
  2. “最佳”的含义是指每次为作业分配内存时,总是把既能满足要求、又是最小的空闲分区分配给作业,避免了“大材小用”。为了加速寻找,该算法要求将所有的空闲区,按其大小以递增的顺序形成一空闲区链。这样,第一次找到的满足要求的空闲区,必然时最优的。孤立地看,最佳适应算法似乎时最佳的,然而在宏观上却不一定。因为每次分配后所切割下的剩余部分,总是最小的,这样,在存储器中会留下许多这样难以利用的小空闲区。-fhwro jkphjgkfphjrwio htjskotjgnkasdl fhnawgrjknhknjgr
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:737
    • 提供者:zuozuo
  1. PageChange

    0下载:
  2. 页面置换算法演示及其性能测试系统: 1最佳适应(Optimal) 2先进先出(FIFO) 3最近最久未使用(LRU) 4最少使用(LFU) 5内存页面数配置 6输入测试- the system of Page replace arithmetic demo and to testing of the capability
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-23
    • 文件大小:14684
    • 提供者:zhhuo
  1. tang

    0下载:
  2. 实现内存的合理分配,采用最先适应算法和最佳适应算法实现动态分区-To achieve a rational allocation of memory, using the first-fit algorithm and the best-fit algorithm to achieve dynamic partitioning
  3. 所属分类:OS Develop

    • 发布日期:2017-04-03
    • 文件大小:7129
    • 提供者:tangx
  1. zhucunfenpeiyuhuishou

    0下载:
  2. 操作系统中主存分配与回收,包括最佳适应算法,首次适应和循环首次适应-In the operating system main memory allocation and recovery, including the best-fit algorithm, for the first time cycle for the first time to adapt and adjust
  3. 所属分类:OS Develop

    • 发布日期:2017-04-03
    • 文件大小:107451
    • 提供者:huang
  1. BestFit

    0下载:
  2. 采用 最佳适应算法进行内存块的分配和回收,同时显示内存块分配和回收后空闲内存分区链的情况-With the adoption of best-fit algorithm for memory block allocation and recovery, also showed the recovered memory block allocation and free memory partition chain of
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-31
    • 文件大小:1177
    • 提供者:高飞
  1. memory

    0下载:
  2. 模拟磁盘分区算法,有最佳适应算法和最先适应算法-Simulated disk partition algorithm, there are FS, and FF
  3. 所属分类:OS Develop

    • 发布日期:2017-04-07
    • 文件大小:2976
    • 提供者:lyb
  1. best

    0下载:
  2. 一个编程实例:采用最佳适应算法,实现动态分派内存及回收存储空间。-A programming examples: the optimum algorithm, and realize the dynamic dispatch memory and recovery of storage space.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-05
    • 文件大小:5090
    • 提供者:乐乐
  1. bestfit

    0下载:
  2. 内存动态分配的用最佳适应算法实现的动态分配内存管理-Dynamic allocation of memory to use best-fit algorithm to achieve dynamic allocation of memory management
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:2363
    • 提供者:man哥
  1. DynamicMemoryAllocation

    1下载:
  2. 对操作系统的动态内存分配(其中包括首次适应算法和最佳适应算法)。可以对内存进行分配,可以查看内存分配情况,可以释放内存。释放内存时,要考虑前后是否有空闲块,有的话得合并,并要改变内存的大小以及视情况改变分配内存的起始地址。-Dynamic memory allocation of the operating system (including first-fit algorithm and the best fit algorithm). Memory can be allocated, you
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:478488
    • 提供者:何志芬
  1. 070410320

    0下载:
  2. 1. 存储器虚拟管理系统外存部分: 模拟文件存储空间的管理,实现模拟为新创建的文件分配存储空间。并且可以采用连续分配方式或离散分配方式。程序通过显示空闲表,文件存储信息和盘块信息来模拟存储空间的分配和回收。程序模拟首次适应算法,循环首次适应算法,最佳适应算法,最坏适应算法和离散存储来展示不同存储方式的存储过程的区别。 -1. Virtual memory management system for external memory parts: the simulation of fil
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-11
    • 文件大小:2469968
    • 提供者:你超哥
  1. qw123

    0下载:
  2. 对进程调度与作业调度的模拟,进程调度算法:采用的是最高优先数优先的高度算法(即把处理机分配给优先数最高的进程和先来先服务算法。分区分配和回收算法:采用首次适应算法和最佳适应算法实现动态分区。其中,空闲分区通过空闲分区链来管理,在进行内存分配时,系统优先使用空闲区低端的空间-safsdfdsfsdafdsfdsfdsf
  3. 所属分类:OS Develop

    • 发布日期:2017-04-05
    • 文件大小:949821
    • 提供者:钱薇
  1. MemoryAllocationAndRecovery

    0下载:
  2. 内存分配与回收,本程序采用两各分配方法,首次适应算法和最佳适应算法,深入了解动态分区存储管理方式内存分配与回收的实现.-Memory allocation and recovery, the program uses two different distribution methods, first-fit algorithm and the best fit algorithm, in-depth understanding of the dynamic memory allocation a
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:186491
    • 提供者:小白鲨
  1. OS-Practice

    0下载:
  2. 最佳适应算法 初始化,选择内存分配适应算法-Best fit algorithm initialization, select the memory allocation algorithm to adapt
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3756
    • 提供者:哈达
  1. xunmi

    0下载:
  2. 操作系统课程设计_最佳适应算法的C++编程-Operating System Course Design _ best fit algorithm C++ programming
  3. 所属分类:OS Develop

    • 发布日期:2017-04-14
    • 文件大小:4907
    • 提供者:xunmi
  1. firstfitalgorithm

    0下载:
  2. 这是一个首次适应算法和最佳适应算法【讲解】,简单易懂-This is a first fit algorithm and the best fit algorithm】 【explain, easy to understand
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:28637
    • 提供者:CAKE同学
  1. NEICUNFENPEI-1

    0下载:
  2. 内存分配算法的模拟实现(含紧凑算法):首次适应算法、最佳适应算法、最差适应算法。-failed to translate
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1468
    • 提供者:SEAN
  1. code

    0下载:
  2. VC++MFC模拟连续分配内存存储管理系统,首次适应算法 、循环首次适应算法、最佳适应算法 -VC++ MFC allocates memory for continuous analog storage management system, the first fit algorithm, loop the first fit algorithm, the best fit algorithm
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-03-29
    • 文件大小:223202
    • 提供者:赵凯
  1. DTassign

    0下载:
  2. 简单完成计算机的动态内存分配功能,利用链表结点存储内存,实现了最佳适应算法,最坏算法,首次适应算法,循环适应算法和紧凑算法。-Simply complete the function of the computer' s dynamic memory allocation, linked list of nodes using storage memory, to achieve the best fit algorithm, the worst algorithm, the first
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:4878
    • 提供者:冰与火
« 1 2 34 5 6 7 8 9 »
搜珍网 www.dssz.com