搜索资源列表

  1. 最佳适应法

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

    • 发布日期:2008-10-13
    • 文件大小:69285
    • 提供者:吴晓辉
  1. os_changeable_partition

    0下载:
  2. 采用可变分区存储管理并且 采用首次适应算法实现存储器分配与回收-using variable memory management and FFA agrithment implement the memory allocate and reclaim.
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:1183
    • 提供者:杨学思
  1. 分配回收

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

    • 发布日期:2008-10-13
    • 文件大小:15319
    • 提供者:王阳
  1. 可变分区存储管理

    0下载:
  2. 哈哈,2. 实现分区存储管理的内存分配功能,选择适应算法(首次适应算法,最佳适 应算法,最后适应算法,最坏适应算法),好-Haha, 2. To achieve storage management through the memory allocation function, the choice of adaptation algorithms (first adaptation algorithm, the best adapta
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:76306
    • 提供者:
  1. 动态分区分配

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

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

    0下载:
  2. 主存空间的分配和回收 可变分区管理方式下采用首次适应算法实现主存分配和回收-main memory space allocation and recovery of the variable through the adoption of management algorithm to adapt to the first main memory allocation and recovery
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:73218
    • 提供者:戴其蓬
  1. Simulate_Allocate_Memory_Implement_by_C

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

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

    0下载:
  2. 主存空间的分配和回收 可变分区管理方式下采用首次适应算法实现主存分配和回收-main memory space allocation and recovery of the variable through the adoption of management algorithm to adapt to the first main memory allocation and recovery
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-21
    • 文件大小:72704
    • 提供者:
  1. Memory_assign

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

    • 发布日期:2024-05-21
    • 文件大小:113664
    • 提供者:王卫国
  1. OS_MemoManagement

    0下载:
  2. 用MFC模拟操作系统用动态分区方式管理内存的全过程,包括手动控制和自动演示样例,使用了首次适应和最佳适应算法。-MFC simulation using dynamic partitioning operating system managed by the whole process of memory, including manual control and automatic sample presentation, the u
  3. 所属分类:系统编程

    • 发布日期:2024-05-21
    • 文件大小:51200
    • 提供者:waleking
  1. memory

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

    • 发布日期:2024-05-21
    • 文件大小:1024
    • 提供者:Jun
  1. MemoryManager

    0下载:
  2. 内存管理模拟器,利用MFC模拟实现了内存的管理操作--内存分配和释放;不同内存分区利用不同颜色区分;采用首次适应算法实现。-Memory management simulator, the use of MFC to achieve a simulated memory management operations- memory allocation and release different memory partition to
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-21
    • 文件大小:3679232
    • 提供者:Jim
  1. dongtai

    0下载:
  2. 操作系统模拟可变分区内存管理,本实验使用首次适应算法。-Analog Variable partition the operating system memory management, first-fit algorithm used in this experiment.
  3. 所属分类:系统编程

    • 发布日期:2024-05-21
    • 文件大小:247808
    • 提供者:阿爽
  1. oa

    0下载:
  2. 可变分区管理方式下采用首次适应算法实现主存分配和回收。操作系统实现的作业。-Variable Partition Management mode using first-fit algorithm main memory allocation and recycling. The operating system to achieve operation.
  3. 所属分类:系统编程

    • 发布日期:2024-05-21
    • 文件大小:210944
    • 提供者:路一
  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. 所属分类:其他小程序

    • 发布日期:2024-05-21
    • 文件大小:2048
    • 提供者:Splendid Sun
  1. 1

    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 m
  3. 所属分类:其他小程序

    • 发布日期:2024-05-21
    • 文件大小:9216
    • 提供者:雷哲文
  1. dongtai

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

    • 发布日期:2024-05-21
    • 文件大小:3072
    • 提供者:沧月
  1. OS

    0下载:
  2. 操作系统存储分区管理实验程序 采用首次适应算法 手动申请分区-Storage area management of the operating system using first-fit algorithm for experimental procedures manual for district
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-21
    • 文件大小:1895424
    • 提供者:barry
  1. dongtaifenqu

    0下载:
  2. 动态分区算法:程序模拟四种动态分区分配算法:首次适应算法、循环首次适应算法、最佳适应算法和最坏适应算法的工作过程。-Dynamic partitioning algorithm: program to simulate the dynamic partition of four algorithms: the first fit algorithm, loop the first fit algorithm, the best fit
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-21
    • 文件大小:509952
    • 提供者:踏雪
  1. 新建文件夹

    0下载:
  2. 基于C语言的操作系统首次适应算法内存分配的模拟(Distribution of simulated first adaptive algorithms)
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-21
    • 文件大小:2048
    • 提供者:mmmdddddd
« 1 2 34 5 6 7 8 9 10 »

源码中国 www.ymcn.org