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

搜索资源列表

  1. main

    0下载:
  2. 采用首次适应算法,循环首次适应算法,最佳适应算法和最坏适应算法实现主存空间的分配和回收。-using the first adaptation algorithm, the first cycle of adaptation algorithm, the best algorithm and the worst adaptation algorithm to adapt to the distribution of main memory space and recycling.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:2150
    • 提供者:杜炼
  1. a

    0下载:
  2. 模拟系统存储空间分配,即对空闲物理块进行空间分配,分配方法为:首次适应发、最佳适应法、最坏适应法。-Simulation system of storage space allocation, namely spatial distribution of free physical block, allocation method is: first fit, the best fit method, the worst adaptation method.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1908
    • 提供者:乔旻浩
  1. 2

    0下载:
  2. (1) 可变分区方式是按作业需要的主存空间大小来分割分区的。当要装入一个作业时,根据作业需要的主存容量查看是否有足够的空闲空间,若有,则按需分配,否则,作业无法装入。假定内存大小为128K,空闲区说明表格式为: • 起始地址——指出空闲区的起始地址; • 长度——一个连续空闲区的长度; • 状态——有两种状态,一种是“未分配”状态;另一种是“空表目”状态,表示该表项目前没有使用。 (2) 采用首次适应算法分配回收内存空间。运行时,输入一系列分配请求和
  3. 所属分类:assembly language

    • 发布日期:2017-04-07
    • 文件大小:542
    • 提供者:zhouxiaotong
  1. memorry

    0下载:
  2. 编译原理课程实验:模拟首次适应动态分区存储管理方案中的内存分配与回收。-Compiler theory curriculum experiment: simulated first-fit dynamic storage management program memory allocation and recovery....
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-07
    • 文件大小:1335260
    • 提供者:yu
  1. process-manage

    0下载:
  2. C语言作业,三类进程管理方法, 按优先数调度算法实现处理器调度, 可变分区管理方式下采用首次适应算法分配内存, 用位示图管理磁盘存储空间-C language operations, three types of process management methods, according to the number of priority scheduling algorithm processor scheduling, using the first-fit algorithm to all
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-29
    • 文件大小:102003
    • 提供者:sunxun
  1. ConsoleApplication3

    0下载:
  2. 可变分区管理方式下采用首次适应算法实现主存分配和回收.能接受来自键盘或文件的空间申请及释放请求,能显示分区分配及回收后的内存布局情况。-Using a variable partition management algorithm for the first time to adapt to the main memory allocation and deallocation. Space applications and can accept requests the keyboard o
  3. 所属分类:CSharp

    • 发布日期:2017-04-10
    • 文件大小:1933831
    • 提供者:杨成伟
  1. 1271002

    0下载:
  2. 用首次适应算法实现主存空间的分配,操作系统-With first-fit allocation algorithm main memory space, the operating system
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:1537
    • 提供者:many123
  1. zfcp

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

    • 发布日期:2017-03-26
    • 文件大小:1958
    • 提供者:xuzhongya
  1. storemanage

    0下载:
  2. 一个采用可变式分区分配的存储管理方案,可以模拟实现分区的分配和回收过程。分区管理法采用的是首次适应算法-Variable partition is assigned a use storage management solutions, it can be simulated distribution and recovery process partition. Partition management method uses a first-fit algorithm
  3. 所属分类:Console

    • 发布日期:2017-04-13
    • 文件大小:1650
    • 提供者:dn
  1. Dynamic-partitioning-allocation

    0下载:
  2. 动态分区分配算法源代码,这是实验报告,这个实验通过首次适应算法、循环首次适应算法、最佳适应算法和最坏适应算法四种动态分区分配算法模拟分区分配过程-Dynamic partitioning allocation algorithm source code, which is the lab report, the experiment by first-fit algorithm, circulation for the first time adaptive algorithm, best ad
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-30
    • 文件大小:48831
    • 提供者:吕梦楠
  1. Cpp5

    0下载:
  2. 首次适应算法,用c语言实现的模拟首次适应算法的过程-firstfit,by c langguage
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:1641
    • 提供者:miao
  1. NeiCunFenPeiYuHuiShou

    0下载:
  2. 操作系统:内存分配与回收实验源代码 编写程序完成动态分区存储管理方式的内存分配与回收。具体内容包括: 1、确定内存空闲分区表和进程内存分配表 2、采用首次适应算法完成内存空间的分配 3、采用最佳适应算法完成内存空间的分配 4、实现内存回收功能,包括单独回收;与上边空闲区邻接,合并回收;与下边空闲区邻接,合并回收;与上、下边空闲区邻接,合并回收。-Operating system: memory allocation and recovery experiments compl
  3. 所属分类:OS Develop

    • 发布日期:2017-05-03
    • 文件大小:957454
    • 提供者:艾克旦
  1. 1185

    0下载:
  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. 所属分类:Multimedia Develop

    • 发布日期:2017-04-30
    • 文件大小:9677
    • 提供者:jiao098326
  1. 892

    0下载:
  2. 采用循环首次适应算法进行内存块的分配和回收,同时显示内存块分配和回收后空闲内存分区链的情况。-First-fit algorithm using cyclic block of memory allocation and recovery, also showed the recovered memory block allocation and free memory partition chain of circumstances.
  3. 所属分类:Multimedia program

    • 发布日期:2017-04-13
    • 文件大小:1782
    • 提供者:shi533882
  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 2 ... 4 5 6 7 8 910 »
搜珍网 www.dssz.com