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

搜索资源列表

  1. li

    0下载:
  2. 最佳适应算法(Best Fit): 它从全部空闲区中找出能满足作业要求的、且大小最小的空闲分区,这种方法能使碎片尽量小。为适应此算法,空闲分区表(空闲区链)中的空闲分区要按大小从小到大进行排序,自表头开始查找到第一个满足要求的自由分区分配。该算法保留大的空闲区,但造成许多小的空闲区。
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:2140
    • 提供者:王峰
  1. 主存储器的分配与回收

    0下载:
  2. 用三个算法来实现对主存储器的分配与回收:首次适应算法、最佳适应算法、最坏适应算法-algorithm used to achieve three of the main memory allocation and recovery : the first adaptation algorithm, the best adaptation algorithm, the worst adaptation algorithm
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:2368
    • 提供者:杨蔺又
  1. 最佳适应法内存分配

    0下载:
  2. 确定分配内存块管理的数据结构、空闲块的数据结构,然后完成内存分配、内存回收、空闲块管理等程序代码;最后编写模拟分配和回收过程的主函数
  3. 所属分类:数据结构常用算法

    • 发布日期:2009-09-20
    • 文件大小:1198
    • 提供者:red_eyed_hare
  1. 存储器分配与回收

    1下载:
  2. 用首次适应算法 最佳适应算法 最坏适应算法实现存储空间的分配,回收作业所占用的存 储空间. 算法描述
  3. 所属分类:C#编程

  1. MemoryFit.rar

    0下载:
  2. 模拟内存的动态分配,可以选择首次适应算法或者最佳适应算法进行分配,结构小巧功能简单,Simulation of the dynamic allocation of memory, you can choose the first or the best adaptation algorithm to adapt to the allocation algorithm, the structure features a simple compact
  3. 所属分类:OS Develop

    • 发布日期:2017-05-08
    • 文件大小:1116821
    • 提供者:陈华龙
  1. AGA.rar

    0下载:
  2. 采用了保优的选择遗传算法 终止条件的判断是:到达一定的代数。可改进为:相邻若干代的种群平均适应值的变化来判断。若相邻若干代的种群平均适应值为变化或者是变化小于某一阈值,表示算法已经收敛,则退出算法。 选择算子:轮盘赌选择; 交叉算子:单点交叉,随机选择计算此适应度值,若大于当前最佳适应度值则降低交叉概率,否则不变; 变异算子:模板,对于优势个体,除采用低概率变异外,变异位置应采取权值越大,变异概率越小的原则,而对劣势个体则相反.,Paul used the choice of excel
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:6071
    • 提供者:棋子
  1. Dynamic_partitioning_of_the_si

    1下载:
  2. ⑴ 用C语言分别实现采用首次适应算法和最佳适应算法的动态分区分配过程alloc()和回收过程free()。其中,空闲分区通过空闲分区链来管理;在进行内存分配时,系统优先使用空闲区低端的空间。 ⑵ 假设初始状态下,可用的内存空间为640KB,并有下列的请求序列:  作业1申请130KB。  作业2申请60KB。  作业3申请100KB。  作业2释放60KB。  作业4申请200KB。 
  3. 所属分类:OS Develop

    • 发布日期:2016-01-24
    • 文件大小:275080
    • 提供者:lzl
  1. dongtaifenqu

    0下载:
  2. 动态分区算法:程序模拟四种动态分区分配算法:首次适应算法、循环首次适应算法、最佳适应算法和最坏适应算法的工作过程。-Dynamic partitioning algorithm: program to simulate the dynamic partition of four algorithms: the first fit algorithm, loop the first fit algorithm, the best fit algorithm and the worst fit al
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:509662
    • 提供者:踏雪
  1. zhucunchuqi.rar

    0下载:
  2. 在可变分区管理方式下,采用首次适应算法,循环首次适应算法,最佳适应算法和最坏适应算法实现主存空间的分配和回收。,Variable partition management mode, using the first adaptation algorithm, the first cycle of adaptation algorithm, the best algorithm and the worst adaptation algorithm to adapt to the distribut
  3. 所属分类:OS Develop

    • 发布日期:2017-04-04
    • 文件大小:3624
    • 提供者:dingdangmao
  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
    • 文件大小:7979
    • 提供者:daisichong
  1. turboc2(1)

    0下载:
  2. 存储管理分区分配算法 功能要求: 本课题要求模拟实现可变分区管理。存储管理主要是对存储空间的分配和回收。当有用户申请 空间时,进行分配,空间不用了及时回收,以免造成游离空间,使得该空间再也无法使用。可变分区管理通常采用的方法有多种,本课题要求分别采用首次适应算法和最佳适应算法实现。 -Storage Management Division allocation algorithm functional requirements: This issue demands the real
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:957627
    • 提供者:果子狸
  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. testc

    1下载:
  2. 实现动态分区管理模拟最先适应法和最佳适应法,用c实现-Dynamic simulation of regional management to adapt the first and best adaptation law, with the realization of c
  3. 所属分类:OS Develop

    • 发布日期:2017-04-14
    • 文件大小:3154
    • 提供者:sevenhu
  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. PkgClnup

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

    • 发布日期:2017-04-04
    • 文件大小:901
    • 提供者:caichunsheng
  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. LMS-AR

    1下载:
  2. 本程序利用自适应LMS算法实现FIR最佳维纳滤波器。可用于观察影响自适应LMS算法收敛性,收敛速度以及失调量的各种因素-This procedure using adaptive LMS algorithm is optimal FIR Wiener filter. Can be used to observe the impact of adaptive LMS algorithm convergence, convergence speed and the amount of imbalan
  3. 所属分类:Algorithm

    • 发布日期:2015-01-06
    • 文件大小:558
    • 提供者:yunguangmei
  1. LMSAdptiveFilter

    0下载:
  2. 采用最小均方准则误差的自适应滤波器,根据输入信号的统计特性自动调整其结构参数,以满足某种最佳准则的要求。-Guidelines for use of minimum mean-square error of the adaptive filter, according to statistical characteristics of the input signal automatically adjusting its structural parameters, in order to m
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:10702
    • 提供者:韩一广
  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 2 34 5 6 7 8 9 10 »
搜珍网 www.dssz.com