CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 搜索资源 - Dynamic partitioning

搜索资源列表

  1. 动态分区分配

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

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

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

    • 发布日期:2016-01-24
    • 文件大小:275080
    • 提供者:lzl
  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 algorithm and the worst fit al
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:509662
    • 提供者:踏雪
  1. 进程调度与作业调度的模拟

    0下载:
  2. 对进程调度与作业调度的模拟,进程调度算法:采用的是最高优先数优先的高度算法(即把处理机分配给优先数最高的进程和先来先服务算法。分区分配和回收算法:采用首次适应算法和最佳适应算法实现动态分区。其中,空闲分区通过空闲分区链来管理,在进行内存分配时,系统优先使用空闲区低端的空间。-process of scheduling and job scheduling simulation and process scheduling algorithm : the highest priority is t
  3. 所属分类:OS Develop

    • 发布日期:2017-03-23
    • 文件大小:40000
    • 提供者:陈任全
  1. FF_NF_BF_WF

    0下载:
  2. 实现了操作系统中存储管理动态分区分配算法的模拟。-Simulation of the dynamic partitioning of the operating system storage management allocation algorithm.
  3. 所属分类:OS Develop

    • 发布日期:2016-01-24
    • 文件大小:533504
    • 提供者:Dwxiao
  1. codes_for_OS_experiment_3

    1下载:
  2. 2008年操作系统实验3存储管理的代码。 主存的分配与回收。不同的存储管理方式下,实现主存空间的分配与回收。动态分区分配方式中的数据结构和分配算法及动态分区存储管理方式及其实现过程。-2008 experiment 3 storage management operating system code. Main memory allocation and recovery. Different storage management mode, the realization of main
  3. 所属分类:OS Develop

    • 发布日期:2017-04-04
    • 文件大小:2357
    • 提供者:风临机
  1. dynamic

    0下载:
  2. 操作系统的动态分区存储管理模拟程序。程序将分区说明表分散为可用队列与已用队列,每次插入进程或撤销进程只需将结点移至另一队列即可,当然此过程还涉及拆分分区,合并分区以及更新分区号-Dynamic partitioning operating system storage management simulation program. Procedure will Zoning Table scattered available queue queue and has spent each inser
  3. 所属分类:OS Develop

    • 发布日期:2017-04-02
    • 文件大小:2466
    • 提供者:李志龙
  1. cunchuguanli

    0下载:
  2. 模拟系统中,主存部分分为两部分,一部分是系统区,这里只存放进程控制块和内存分配表,一部分是用户区,这里主要是对用户区的管理。 系统区包括PCB区域、内存空间分配表; 用户区用数组模拟,大小为512字节,存储管理采用动态分区存储管理方式。-Simulation system, part of main memory is divided into two parts, the system area, only the storage process control block and
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:3069
    • 提供者:liweixia
  1. OS_DP_debug

    0下载:
  2. 要求首先采用动态分区方案,用最先适用算法对作业实施内存分配,然后把作业地址空间的某一逻辑地址转换成相应的物理地址。能够处理以下的情形:输入某一逻辑地址,程序能判断地址的合法性,如果合法,计算并输出相应的物理地址。如果不能计算出相应的物理地址,说明原因。-Requires first the use of dynamic partitioning program, with the first application of algorithms for the implementation of
  3. 所属分类:OS Develop

    • 发布日期:2017-04-29
    • 文件大小:82880
    • 提供者:高怀庆
  1. dongtaifenquguanli

    0下载:
  2. 1.采用指定算法模拟动态分区管理方式的主存分配。能够处理以下的情形: ⑴ 随机出现的进程i申请jKB内存,程序能判断是否能分配,如果能分配,要求输出分配的首地址Faddress,并要求输出内存使用情况和空闲情况。 内存情况输出的格式为:Faddress该分区的首地址;Eaddress该分区的尾地址 Len 分区长度;Process 如果使用,使用的进程号,否则为0 ⑵ 主存分配函数实现寻找空闲区、空闲区表的修改、已分配区表的修改功能。-1. Simulation algo
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:265993
    • 提供者:朱良
  1. OS

    0下载:
  2. 动态分区管理的主存分配模拟设计--最先适应法、最差适应法-Dynamic partitioning of main memory allocation management analog design- the first to meet the law, the worst adaptation law
  3. 所属分类:OS Develop

    • 发布日期:2017-04-03
    • 文件大小:356994
    • 提供者:黄斌
  1. tang

    0下载:
  2. 实现内存的合理分配,采用最先适应算法和最佳适应算法实现动态分区-To achieve a rational allocation of memory, using the first-fit algorithm and the best-fit algorithm to achieve dynamic partitioning
  3. 所属分类:OS Develop

    • 发布日期:2017-04-03
    • 文件大小:7129
    • 提供者:tangx
  1. OS_Big_Work_No3

    0下载:
  2. 一、设计目的 1、理解动态分区式存储管理的工作原理 2、掌握分区分配的一下三算法:首先适应算法、最佳适应算法和最坏适应算法 3、掌握动态分区分配的存储分配和存储回收的过程 二、设计要求 1、建立空闲分区表数据文件,该文件包括两个字段:空闲区的起始地址和长度;该文件有若干个记录,表示目前系统有多个空闲分区; 2、建立已分配分区表数据文件,该文件包括三个字段:已分配分区的起始地址、长度、作业名称;该文件有若干个记录,表示目前系统有多个作业; 3、程序启动时读两分区表数据文
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:322470
    • 提供者:xcc
  1. dongtai

    0下载:
  2. 用一种结构化高级语言构造分区描述器,编制动态分区分配算法和回收算法模拟程序。 -Use a structured high-level language describes tectonic division, prepare dynamic partitioning algorithm and recovery algorithm simulation program.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-04
    • 文件大小:10480
    • 提供者:乐乐
  1. dongtaifenqvguanli

    0下载:
  2. 动态分区存储管理,操作系统课程设计,运行通过-Dynamic partitioning storage management
  3. 所属分类:OS Develop

    • 发布日期:2017-04-23
    • 文件大小:336106
    • 提供者:liudong
  1. fenqucunchuguano

    0下载:
  2. 应用首次适应算法实现动态分区存储管理。主要思想是通过图形界面来获得用户输入信息。-Applications for the first time to adapt to the dynamic partitioning algorithm storage management. The main idea is to get through the graphical interface, user input information.
  3. 所属分类:Disk Tools

    • 发布日期:2017-04-05
    • 文件大小:163315
    • 提供者:沈陆
  1. 65366176memory_release

    0下载:
  2. 本程序实现了,动态分区法的演示过程,对操作系统实验的同学会很有帮助-Realized by the dynamic partitioning method of demonstration, the students of the experimental operating system would be helpful
  3. 所属分类:OS Develop

    • 发布日期:2017-04-03
    • 文件大小:43022
    • 提供者:陆艳艳
  1. Desktop

    0下载:
  2. 执行操作系统中的固定分区算法和动态分区算法-Implementation of the operating system in the fixed-partition algorithm and the dynamic partitioning algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-03-30
    • 文件大小:2137
    • 提供者:高山
  1. dynamic-partitioning

    0下载:
  2. 操作系统动态分区式存取管理,包括首次适应分配算法、循环适应分配算法、最佳适应算法、伙伴系统算法。-The dynamic partitioning operating system access management, including the first-fit allocation algorithm, Cycle adapt allocation algorithm, the best adaptation algorithm, partner system algorithm.
  3. 所属分类:OS Develop

    • 发布日期:2017-11-11
    • 文件大小:377359
    • 提供者:潘宝
  1. dongtaifenqu

    0下载:
  2. 操作系统的课程设计,该代码是动态分区的源程序,可以实现的-Operating systems curriculum design, the code is dynamic partitioning of the source, can be achieved
  3. 所属分类:OS Develop

    • 发布日期:2017-11-17
    • 文件大小:2062
    • 提供者:liling
« 12 »
搜珍网 www.dssz.com