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

搜索资源列表

  1. Simulate_Allocate_Memory_Implement_by_C

    0下载:
  2. 模拟内存分配的c语言实现 六、 实验目的 了解用户程序分配内存以及回收所用内存的过程,加深对操作系统存储管理机制的理解。 七、 实验内容 采用首次适应法、最佳适应法或最差适应法,编写一内存分配和回收模拟程序。 (提示:“内存空闲区”数组的设置原理类似于实验一。动态地随机产生新的“内存分配”或“内存回收”请求,再按照你选定的分配算法修改这个数组。由于这个实验的重点在于内存分配,所以不考虑与某内存区相关的进程情况。) -simulation memory allocation
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:3617
    • 提供者:丘方
  1. diaodusuanfa

    0下载:
  2. 进程调度算法,有首次适应,最优适应算法,最差适应算法-process scheduling algorithm, the first adaptation, optimal adaptation algorithm, the worst adaptation algorithm
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1879
    • 提供者:于里
  1. OS_MemoManagement

    0下载:
  2. 用MFC模拟操作系统用动态分区方式管理内存的全过程,包括手动控制和自动演示样例,使用了首次适应和最佳适应算法。
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:51642
    • 提供者:waleking
  1. project1

    0下载:
  2. 操作系统内存分配释放算法的C语言模拟,包括首次适应法与循环首次适应法。指令可通过io转向从文件读入-The release of the operating system memory allocation algorithm for C-language simulation, including the first cycle for the first time to adapt to meet the law and the law. Io steering commands can b
  3. 所属分类:OS Develop

    • 发布日期:2017-03-31
    • 文件大小:25776
    • 提供者:lly
  1. os_2

    1下载:
  2. 存储分配算法采用首次适应(FF)法。根据指针fhead查找空闲分区链,当找到第一个可满足分配请求的空闲区时便分配之。当某空闲区被分配后的剩余空闲空间大于规定的碎片最小容量MIN,则形成一个较小的空闲区留在空闲分区链中。 回收时,根据MAT将指定分区链入空闲分区链。若该分区有前邻或后邻分区,则将它们拼接成一块较大的空闲区。 -Storage allocation algorithm uses the first time to adapt to (FF) method. According
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-29
    • 文件大小:3386
    • 提供者:
  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. memery

    0下载:
  2. 用C语言编写一段程序,模拟存储管理中利用链表结构进行循环首次适应法的内存分配与释放操作:首先用系统函数malloc在内存中申请一块大小为1000字节的空间,然后通过输入命令完成此块内存中的分区分配与回收算法,要求在屏幕上给出必要的结果显示。-Write a program using C language to simulate the use of list storage management cycle of the structure of first-fit memory alloca
  3. 所属分类:CSharp

    • 发布日期:2017-03-27
    • 文件大小:1691
    • 提供者:weiwei
  1. OsHomework_1st

    0下载:
  2. 此代码用于描述操作系统中首次适应内存分配算法的模拟-This code was first used to describe the operating system memory allocation algorithm to adapt the analog
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-12
    • 文件大小:2809808
    • 提供者:liuzhao
  1. egrhr8454rh8

    0下载:
  2. 存储管理动态分区分配及回收算法(首次适应算法)-Dynamic storage management and recovery partition algorithm (first-fit algorithm)
  3. 所属分类:Game Program

    • 发布日期:2017-04-12
    • 文件大小:1272
    • 提供者:gou0751731
  1. First-fit-algorithm

    0下载:
  2. 在可变分区管理方式下采用首次适应算法实现主存分配和回收。-In variable partition management algorithm used first to adapt the main memory allocation and recovery.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-30
    • 文件大小:221947
    • 提供者:
  1. fenqu100

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

    • 发布日期:2017-04-13
    • 文件大小:1708
    • 提供者:wr68beilian4
  1. lab3forTC

    0下载:
  2. 用C语言按照首次适应算法FF编制以动态分区管理方式进行内存分配和回收的程序,并测试通过。-Using C language in accordance with the first FF algorithm to adapt to the preparation of a dynamic regional management approach to memory allocation and recovery procedures and test.
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-04-14
    • 文件大小:2761
    • 提供者:olezeiji941
  1. 03

    0下载:
  2. 用高级语言模拟实现动态分区存储管理,要求: 1、分区分配算法至少实现首次适应算法、最佳适应算法和最坏适应算法中的至少一种。熟悉并掌握各种算法的空闲区组织方式。 2、分区的初始化——可以由用户输入初始分区的大小。(初始化后只有一个空闲分区,起始地址为0,大小是用户输入的大小) 3、分区的动态分配过程:由用户输入作业号和作业的大小,实现分区过程。 4、分区的回收:用户输入作业号,实现分区回收,同时,分区的合并要体现出来。(注意:不存在的作业号要给出错误提示!) 分区的显示:任何时
  3. 所属分类:CSharp

    • 发布日期:2017-05-01
    • 文件大小:409157
    • 提供者:李大娘
  1. StorageCotrol

    0下载:
  2. 设计一个可变式分区分配的存储管理方案。并模拟实现分区的分配和回收过程。 对分区的管理法可以采用下面四种算法: 首次适应算法、最佳适应算法、最差适应算法 - 76/5000 Design a variable partition allocation of storage management program. And simulate the realization of the distribution and recycling process. The follow
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-04
    • 文件大小:21433
    • 提供者:jiaqi
  1. zzxseo7

    0下载:
  2. 动态分区分配算法的模拟要求设计主界面以灵活选择某算法,以下算法都要实现: 1, 首次适应算法 2, 循环首次适应算法()
  3. 所属分类:人工智能/神经网络/深度学习

    • 发布日期:2018-01-07
    • 文件大小:2048
    • 提供者:threud
  1. 1

    0下载:
  2. 进程调度实现,包括首次适应算法和最佳适应算法(Implementation of process scheduling,Including the first adaptive algorithm and the best adaptive algorithm)
  3. 所属分类:操作系统开发

    • 发布日期:2018-01-09
    • 文件大小:3072
    • 提供者:吕晓
  1. 实验四代码

    0下载:
  2. 用C语言分别实现采用首次适应算法和最佳适应算法的动态分区分配过程alloc()和回收过程free()。其中,空闲分区通过空闲分区链(表)来管理:在进行内存分配时,系统优先使用空闲区低端的空间。 (2)给出初始状态、可用内存空间、请求序列,分别采用首次适应算法和最佳适应算法进行内存块的分配和回收,要求每次分配和回后显示出空闲内存分区链的情况(共有多个空闲分区,每个空闲分区的大小分别为多大)(Dynamic partition allocation process alloc ())
  3. 所属分类:Windows编程

    • 发布日期:2018-01-11
    • 文件大小:2048
    • 提供者:问问1111
  1. yjbmgbt

    0下载:
  2. 首次适应算法First Fit: 从空闲分区表的第一个表目起查找该表,把最先能够满足要求的空闲区分配给作业,这种方法目()
  3. 所属分类:大数据

  1. Dynamic partition allocation

    0下载:
  2. 使用首次适应算法和最佳适应算法来模拟动态分区分配(Using the first adaptive algorithm and the best adaptive algorithm to simulate dynamic partition allocation)
  3. 所属分类:其他

    • 发布日期:2018-01-11
    • 文件大小:263168
    • 提供者:timmer
  1. CPKJ

    0下载:
  2. 首次适应算法First Fit: 从空闲分区表的第一个表目起查找该表,把最先能够满足要求的空闲区分配给作业,这种方法目()
  3. 所属分类:图形图象

    • 发布日期:2018-04-21
    • 文件大小:1024
    • 提供者:figsre
« 1 2 3 4 5 6 7 89 »
搜珍网 www.dssz.com