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. Simulate_Allocate_Memory_Implement_by_C

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

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

    6下载:
  2. 可变式分区分配思想建立存储分块表MBT,使用首次适应法为新作业寻找可用空间。 输入内存空间大小、MBT表长度,显示初始MBT表的状态,以后每分配一次空间或释放一次空间都要显示当前的MBT表。当选择“分配空间”操作,则需要输入新作业所需的空间;当选择“释放空间”操作,则需要输入想要释放的作业号。-variable thinking of establishing regional distribution storage block table MBT, use the first metho
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:10994
    • 提供者:毛斌
  1. myprog

    0下载:
  2. 用char *malloc(unsigned size)函数向系统申请一次内存空间(如size=1000,单位为字节),用首次适应法 addr = (char *)fmalloc(unsigned size) 和 ffree(unsigned size,char * addr)(基本要求)或 循环首次适应法(提高一步) addr = (char *)lmalloc(unsigned size) 和 lfree(unsigned size,char * addr)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:1855
    • 提供者:lensoft
  1. dynamicDevide

    0下载:
  2. 动态分区存储管理是一种存储器管理方案。它包含四种内存分配方法:首次适应法、循环首次适应法、最佳适应法和最差适应法,这四种方法各有其优缺点。它在回收内存分区时又包含四种情况:与回收区相邻的两分区都不是空闲分区,此时直接回收该分区;与回收区低地址端相邻分区是空闲分区,而与回收区高地址端相邻分区不是空闲分区,此时将回收区与低地址端分区合并成一个空闲分区;与回收区低地址端相邻分区不是空闲分区,而与回收区高地址端相邻分区是空闲分区,此时将回收区与高地址端分区合并成一个空闲分区;与回收区低地址端和高地址端
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1546
    • 提供者:geduo
  1. a

    0下载:
  2. 用c语言编写一段程序,模拟存储管理中利用链表结构进行循环首次适应法的内存分配与释放操作
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:2078
    • 提供者:jiang
  1. neicunfeipei

    0下载:
  2. 编写一个C程序,用char *malloc(unsigned size)函数向系统申请一次内存空间(如size=1000,单位为字节),用循环首次适应法 addr = (char *)lmalloc(unsigned size) 和 lfree(unsigned size,char * addr)模拟可变分区内存管理,实现对该内存区的分配和释放管理。
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:1881
    • 提供者:fy
  1. the first-time-to-adapt-to-(FF)-method

    0下载:
  2. 采用首次适应法动态分配内存,使用链表,解释全面
  3. 所属分类:其它

    • 发布日期:2010-10-13
    • 文件大小:1636
    • 提供者:Onmywayqiu
  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. memory

    0下载:
  2. 内存管理实验 1. 实验目的: 用高级语言编写和调试一个内存管理程序,以加深对内存的分配、回收以及空闲块管理的理解。 2. 实验内容: 编写一个模拟程序,完成内存可变分区分配的模拟,要求采用最佳适应法、最坏适应法、首次适应法或下次适应法之一。 实验具体包括:首先确定分配内存块管理的数据结构、空闲块的数据结构,然后完成内存分配、内存回收、空闲块管理等程序代码 最后编写模拟分配和回收过程的主函数,上机实验并取得结果数据。 -Memory management in Exper
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-23
    • 文件大小:1194
    • 提供者:Jun
  1. shiyan1

    0下载:
  2. 用char *malloc(unsigned size)函数向系统申请一次内存空间(如size=1000,单位为字节), 用首次适应法 addr = (char *)fmalloc(unsigned size) 和 ffree(unsigned size,char * addr) 或用循环首次适应法 addr = (char *)lmalloc(unsigned size) 和 lfree(unsigned size,char * addr) 模拟UNI
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-04
    • 文件大小:3665
    • 提供者:一零
  1. processmgr1

    0下载:
  2. 使用首次适应法 实现内存的分配与回收 使用MFC 有窗口和图形显示-Use first-fit method to achieve the memory allocation and recovery of the use of MFC have windows and graphical display
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-02
    • 文件大小:843216
    • 提供者:钟峰
  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. m_r

    0下载:
  2. 应用循环首次适应法模拟电脑内存的分配和释放,使用双链表-Simulation cycle for the first time to adapt to memory allocation and release of
  3. 所属分类:MacOS develop

    • 发布日期:2017-04-13
    • 文件大小:1892
    • 提供者:haha
  1. OS-Practice

    0下载:
  2. 采取可变式分区管理,利用平衡二叉树(AVL树)管理已分配给进程的内存区,利用首次适应法管理。-Variable regional management to the use of balanced binary tree (AVL tree) management has been allocated to the process of memory area, using first-fit method management.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:3751
    • 提供者:lulu
  1. os_lab

    0下载:
  2. 实现可变分区管理的循环首次适应法,内含源代码,结果,以及分析报告-Variable partition management to achieve the cycle for the first time to adapt to law, contains the source code, results and analysis
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:20366
    • 提供者:许良备
  1. thefirsttimetoadapttomethod

    0下载:
  2. 采用首次适应法模拟内存分配,用链表实现,解释较全面-Storage allocation algorithm uses the first time to adapt to (FF) method.
  3. 所属分类:SCM

    • 发布日期:2017-04-13
    • 文件大小:1636
    • 提供者:Becaution
  1. Memory_allocation

    0下载:
  2. 本实验只设计一个大空闲内存区域,起始地址为0,大小为900。 程序运行后,提示用户选择内存分配方式,1---单一分区内存分配,2---多分区内存分配。 在单一分区方式中,一次只接受一个进程的分配请求,其中进程号以及进程所申请分配内存大小均随机产生。并进行错误检查及提示。 在多分区方式中,采用首次适应方法模拟内存分配。当有请求时,检查到有空闲分区且请求内存小于空闲内存大小时,即进行首次适应法分配。对于分配后利用完的空间进行回收处理,以便于下次分配使用。 本次主程序中,预先设定好分配
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:9326
    • 提供者:moondancing
  1. T_5424

    0下载:
  2. 操作系统第一次实验参考资料 可变分区存储管理 编写一个C程序,用char *malloc(unsigned size)函数向系统申请一次内存空间(如size=1000,单位为字节),用首次适应法 addr = (char *)fmalloc(unsigned size) 和 ffree(unsigned size,char * addr)(基本要求)或 循环首次适应法(提高一步) addr = (char *)lmalloc(unsigned size) 和
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-09
    • 文件大小:13822
    • 提供者:黄泽霖
  1. chunchuguanli

    0下载:
  2. 编写一个C程序,用char *malloc(unsigned size)函数向系统申请一次内存空间(如size=1000,单位为字节),用首次适应法 addr = (char *)fmalloc(unsigned size) 和 ffree(unsigned size,char * addr)(基本要求)或 循环首次适应法(提高一步) addr = (char *)lmalloc(unsigned size) 和 lfree(unsigned size,char
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-08
    • 文件大小:12680
    • 提供者:hujiangang
« 12 »
搜珍网 www.dssz.com