搜索资源列表

  1. 最佳适应法.rar

    0下载:
  2. 所属分类:操作系统开发

    • 发布日期:2024-05-17
    • 文件大小:69018
    • 提供者:
  1. 分配回收

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

    • 发布日期:2008-10-13
    • 文件大小:15319
    • 提供者:王阳
  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. Simulate_Allocate_Memory_Implement_by_C

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

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

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

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:geduo
  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-17
    • 文件大小:51200
    • 提供者:waleking
  1. VC++

    0下载:
  2. 操作系统中:用最佳适应算法进行进程调度,进行作业资源的回收-Operating system: using the best algorithm to adapt to the process of scheduling, operating resource recovery
  3. 所属分类:其他小程序

    • 发布日期:2024-05-17
    • 文件大小:68608
    • 提供者:ganyuzhen
  1. 1

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

    • 发布日期:2024-05-17
    • 文件大小:363520
    • 提供者:liang
  1. 5

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

    • 发布日期:2024-05-17
    • 文件大小:2168832
    • 提供者:liang
  1. MemoryFit

    0下载:
  2. 模拟内存的动态分配,可以选择首次适应算法或者最佳适应算法进行分配,结构小巧功能简单-Simulation of the dynamic allocation of memory, you can choose the first or the best adaptation algorithm to adapt to the allocation algorithm, the structure features a simple co
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-17
    • 文件大小:1630208
    • 提供者:陈华龙
  1. 122333

    0下载:
  2. 课题八:存储管理---动态分区分配算法的模拟: 要求设计主界面以灵活选择某算法,且以下算法都要实现:首次适应算法、循环首次适应算法、最佳适应算法; -Eight topics: storage management--- dynamic partitioning allocation algorithm simulation: the main interface to design a flexible choice of a
  3. 所属分类:Windows编程

    • 发布日期:2024-05-17
    • 文件大小:9216
    • 提供者:张海华
  1. memory

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

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

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

    • 发布日期:2024-05-17
    • 文件大小:899072
    • 提供者:王一奇
  1. new.cpp.tar

    0下载:
  2. 首次适应算法,最佳适应算法,最坏适应算法VC6.0++S实现-first fit
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-17
    • 文件大小:2048
    • 提供者:ank
  1. menory

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

    • 发布日期:2024-05-17
    • 文件大小:1106944
    • 提供者:小衍
  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-17
    • 文件大小: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-17
    • 文件大小:9216
    • 提供者:雷哲文
  1. dongtai

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

    • 发布日期:2024-05-17
    • 文件大小:3072
    • 提供者:沧月
  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-17
    • 文件大小:509952
    • 提供者:踏雪
  1. 自适应轨迹跟踪算法

    0下载:
  2. 自适应( self-adaptive)是指处理和分析过程中,根据处理数据的数据特征自动调整处理方法、处理顺序、处理参数、边界条件或约束条件,使其与所处理数据的统计分布特征、结构特征相适应,以取得最佳的处理效果(Self-adaptive refers to the automatic adjustment of processing methods, processing sequence, processing parameters,
  3. 所属分类:仿真建模

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:Sunshine0421
« 1 23 4 5 6 7 8 9 10 ... 13 »

源码中国 www.ymcn.org