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
    • 文件大小:37186
    • 提供者:快乐人儿
  1. 分配回收

    0下载:
  2. 1. 存储管理采用可变分区方式。可变分区方式是按作业需要的主存空间大小来分配分区的。当作业装入主存时,根据主存的需要量察看有无足够的空间分配,若有,则按需要量分配一个分区给该作业;若无,则作业不能装入。随着作业的装入,撤离,主存被分成许多分区,有的占用,而有的是空闲的。 2. 存储分配分别采用首次适应算法、最佳适应算法和最差适应算法。 3. 当一个新作业要求装入主存时,查找空闲区表,从中找出一个足够大的空闲区。若找到大于作业需要量的空闲区,则把它分成二部分,一部分为占用区,另一部分
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:15319
    • 提供者:王阳
  1. tenor_cycle

    0下载:
  2. 用于存储器分配的最佳适应算法的模拟 要求:利用Windows API中内存分配和释放的函数调用模拟用于动态分区分配的最佳适应算法的实现过程。-memory allocation for the best adaptation algorithm simulation requirements : Using Windows API memory allocation and the release of the function call for dynamic simulation of
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:42594
    • 提供者:刘星
  1. VC++

    0下载:
  2. 操作系统中:用最佳适应算法进行进程调度,进行作业资源的回收
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:7125
    • 提供者:ganyuzhen
  1. 1

    0下载:
  2. 本程序为一个内存动态分区分配的模拟程序,采用首次适应算法和最佳适应算法实现动态分区。其中,空闲分区通过空闲分区链来管理,在进行内存分配时,系统优先使用空闲区低端的空间
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:363092
    • 提供者:liang
  1. 2

    0下载:
  2. 本程序为一个内存动态分区分配的模拟程序,采用首次适应算法和最佳适应算法实现动态分区。其中,空闲分区通过空闲分区链来管理,在进行内存分配时,系统优先使用空闲区低端的空间
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:347593
    • 提供者:liang
  1. 3

    0下载:
  2. 本程序为一个内存动态分区分配的模拟程序,采用首次适应算法和最佳适应算法实现动态分区。其中,空闲分区通过空闲分区链来管理,在进行内存分配时,系统优先使用空闲区低端的空间
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:349084
    • 提供者:liang
  1. 4

    0下载:
  2. 本程序为一个内存动态分区分配的模拟程序,采用首次适应算法和最佳适应算法实现动态分区。其中,空闲分区通过空闲分区链来管理,在进行内存分配时,系统优先使用空闲区低端的空间
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:364698
    • 提供者:liang
  1. 5

    0下载:
  2. 本程序为一个内存动态分区分配的模拟程序,采用首次适应算法和最佳适应算法实现动态分区。其中,空闲分区通过空闲分区链来管理,在进行内存分配时,系统优先使用空闲区低端的空间
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:2169448
    • 提供者:liang
  1. 存储器分配与回收

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

  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. 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
    • 文件大小:9272
    • 提供者:张海华
  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. 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. 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
    • 文件大小:2303
    • 提供者:Splendid Sun
  1. 1

    1下载:
  2. 操作系统中利用最佳适应算法 最坏适应算法 循环首次适应算法 首次适应算法实现动态内存的分配和回收内存-The operating system using the best-fit algorithm worst-fit algorithm loop first-fit algorithm first-fit algorithm to achieve dynamic memory allocation and recovery of memory
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-05
    • 文件大小:9632
    • 提供者:雷哲文
  1. dongtai

    0下载:
  2. 实现了动态分区分配,使用了两种算法,首次适应算法,最佳适应算法-Implements the dynamic partition, using two kinds of algorithms
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:2777
    • 提供者:沧月
  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. 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. 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
    • 提供者:小白鲨
« 12 3 »
搜珍网 www.dssz.com