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

搜索资源列表

  1. 最佳适应法

    0下载:
  2. 采用首次适应法、最佳适应法或最差适应法,编写一内存分配和回收模拟程序。 动态地随机产生新的“内存分配”或“内存回收”请求,再按照你选定的分配算法修改这个数组。由于这个实验的重点在于内存分配,所以不考虑与某内存区相关的进程情况。-used first to adapt, adapt best or the worst adaptation law, the preparation of a memory allocation and recovery simulation program. Dyn
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:69285
    • 提供者:吴晓辉
  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. 动态分区分配

    0下载:
  2. 本程序为一个内存动态分区分配的模拟程序,采用首次适应算法和最佳适应算法实现动态分区。其中,空闲分区通过空闲分区链来管理,在进行内存分配时,系统优先使用空闲区低端的空间-the procedures for a dynamic memory allocation through the simulation program, using the first and best adaptation algorithm to adapt to dynamic partitioning algorith
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:363092
    • 提供者:陈任全
  1. Memory_assign

    0下载:
  2. 操作系统实验模拟,存储器动态分配空间 可选首次适应算法和最佳适应算法-experimental operating system simulation, dynamic memory allocation options first space adaptation algorithm and the best fit algorithm
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:9505
    • 提供者:王卫国
  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. ZCKJFPHS

    0下载:
  2. 主存空间的分配与回收.采用可变分区存储管理,使用首次适应算法、循环首次适应算法、最佳适应算法三种算法完成设计。-main memory space for the distribution and recovery. Using variable storage area management, the use of the first-fit algorithm, the first cycle of adaptation algorithms, best adaptation algorit
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:280536
    • 提供者:罗小明
  1. dongtaiguanli

    0下载:
  2. 在对数据结构有一定掌握程度的情况下设计合理的数据结构来描述存储空间,实现分区存储管理的内存分配功能,应该选择最合适的适应算法(首次适应算法,最佳适应算法,最后适应算法,最坏适应算法),实现分区存储管理的内存回收算法,在这些存储管理中间必然会有碎片的产生,当碎片产生时,进行碎片的拼接,等等相关的内容-structure of the data in a certain degree of master of rational design of the data structure to desc
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:306934
    • 提供者:sunwei
  1. zuijiashiyingsuanfa

    0下载:
  2. 通过最佳适应算法实现内存的分配与回收~很不错的程序,大家帮我看看,有什么不足之处提点小弟噢-to best adapt the algorithm memory allocation and recovery - is pretty good procedures, you will help me find, what are the deficiencies Department reminded the younger Oh
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:9607
    • 提供者:郭丛丹
  1. CPU调度算法

    1下载:
  2. 采用最佳适应算法和最先适应算法对CPU进行调度
  3. 所属分类:源码下载

  1. 进程调度与作业调度的模拟

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

    • 发布日期:2017-03-23
    • 文件大小:40000
    • 提供者:陈任全
  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. firstsuit

    0下载:
  2. 文件的首次适应算法和最佳适应算法,实验平台是vc.-Documents the first time the best algorithm and adapt to meet the algorithm, the experimental platform is vc.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:898909
    • 提供者:王一奇
  1. new.cpp.tar

    0下载:
  2. 首次适应算法,最佳适应算法,最坏适应算法VC6.0++S实现-first fit
  3. 所属分类:OS Develop

    • 发布日期:2017-04-04
    • 文件大小:1869
    • 提供者:ank
  1. menory

    0下载:
  2. 通过图形化的界面模拟操作系统中动态分区存储管理方式的内存分配与回收,采用的算法有首次适应算法和最佳适应算法,并且能实现内存回收功能,包括单独回收;与上边空闲区邻接,合并回收;与下边空闲区邻接,合并回收;与上、下边空闲区邻接,合并回收。-Through the graphical interface of the dynamic simulation of the operating system partition storage management and recovery of the m
  3. 所属分类:OS Develop

    • 发布日期:2017-04-10
    • 文件大小:1106917
    • 提供者:小衍
  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. OS_Big_Work_No3

    0下载:
  2. 一、设计目的 1、理解动态分区式存储管理的工作原理 2、掌握分区分配的一下三算法:首先适应算法、最佳适应算法和最坏适应算法 3、掌握动态分区分配的存储分配和存储回收的过程 二、设计要求 1、建立空闲分区表数据文件,该文件包括两个字段:空闲区的起始地址和长度;该文件有若干个记录,表示目前系统有多个空闲分区; 2、建立已分配分区表数据文件,该文件包括三个字段:已分配分区的起始地址、长度、作业名称;该文件有若干个记录,表示目前系统有多个作业; 3、程序启动时读两分区表数据文
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:322470
    • 提供者:xcc
  1. dongtai

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

    • 发布日期:2017-03-30
    • 文件大小:2777
    • 提供者:沧月
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com