CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 搜索资源 - 内存动态分配

搜索资源列表

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

    0下载:
  2. 此程序模拟内存的动态分配与回收,希望能给大家帮助,并能得到大家的意见,谢谢!-this simulation of dynamic memory allocation and recovery, the hope of giving everyone, and everyone's views, Thank you!
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:3797
    • 提供者:靳士伟
  1. DisANDRectheRAM

    0下载:
  2. 模拟了操作系统里面的动态分配和回收内存空间的过程,有多种算法。-simulation of the operating system inside the dynamic allocation of memory space and recovery process, a number of algorithms.
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:96213
    • 提供者:xue yixian
  1. 动态分配内存空间

    0下载:
  2. 一个小实验 ,操作系统动态分配-a small experiment, the operating system dynamic allocation
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:8786
    • 提供者:晓丽
  1. 内存分配

    0下载:
  2. windows系统内存动态存储分配,两种分配算法-windows system memory dynamic storage allocation, the two allocation algorithm
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:85773
    • 提供者:叶黄
  1. Memory_Management

    0下载:
  2. 本项目是一款内存动态分区分配模拟程序。用户通过本程序可以了解动态分区分配方式中使用的数据结构和分配算法,加深对动态分区存储管理方式及其实现过程的理解。
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:16927
    • 提供者:程斌
  1. cpu_algrothm

    0下载:
  2. windows动态内存空间分配算法,采用指针动态链接分配
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:4894
    • 提供者:刘田
  1. memalocate

    0下载:
  2. 为二维数组动态分配内存。当程序编译时不能确定数组大小的时候,就需要动态分配数组空间, 此程序可以创建动态二维数组
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:949
    • 提供者:Xin Jin
  1. MemoryFit.rar

    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 compact
  3. 所属分类:OS Develop

    • 发布日期:2017-05-08
    • 文件大小:1116821
    • 提供者:陈华龙
  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. 图形化界面模拟操作系统OS的作业调度算法

    2下载:
  2. 通过图形化界面模拟操作系统的作业调度算法中的时间片轮转和动态抢占式优先权算法,同时模拟内存的分配和回收-Simulation of the operating system through the graphical interface of the job scheduling algorithm in the time slice rotation and dynamic preemptive priority algorithm, and simulation of memory allo
  3. 所属分类:操作系统开发

    • 发布日期:2017-03-22
    • 文件大小:22055
    • 提供者:老班
  1. allocate

    0下载:
  2. 操做系统动态内存分配,适合于操作系统类的课程设计。-Parade to do dynamic memory allocation system, suitable for the operating system type of curriculum design.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-08
    • 文件大小:8337
    • 提供者:tt
  1. Memory_Management

    1下载:
  2. 扩展的动态内存机制 任务综述 本任务扩展了自己私有的内存管理机制。首先使用预先规划的思想,使用预先分配的内存池和内存分区,再通过使用消息队列作为内存池的管理机制处理内存块分配与释放的过程,而消息队列中保存的是每个预先申请内存块的地址。当用户需要分配一个内存块时,使用msgQReceive() 函数从消息队列中获取一个相应大小的内存块地址;当用户需要释放一个内存块时,则使用msgQSend()函数将内存块首地址发送回消息队列中。通过这种方法,减少了内存反复申请与释放产生外部碎片的可能
  3. 所属分类:OS Develop

    • 发布日期:2017-04-24
    • 文件大小:31037
    • 提供者:litao
  1. fenqucunchu

    0下载:
  2. 编写程序完成可变分区存储管理方式的内存分配会受。实验具体包括:首先确定内存空间分配表;然后采用最佳分配算法完成内存空间的分配和回收;最后编写主函数对所做工作进行测试-Completed programming stored variable district management will be affected by the memory allocation. Specific experiments include the following: first determine alloca
  3. 所属分类:OS Develop

    • 发布日期:2017-04-02
    • 文件大小:1432
    • 提供者:
  1. DynamicBlockManagement11

    0下载:
  2. 操作系统实验报告:动态内存分配与回收 VC基本对话框画图演示分配与回收的过程。-Experimental report operating system: Dynamic memory allocation and recovery of basic dialog VC presentation drawing distribution and recovery process.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-26
    • 文件大小:56285
    • 提供者:慕林通
  1. 0807114040

    0下载:
  2. 操作系统实验,模拟内存动态分配,有说明文档做详细说明。-Operating system, experiment, simulation of dynamic allocation of memory, there is documentation to do in detail.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-05
    • 文件大小:380160
    • 提供者:minipuss
  1. DynamicMemoryAllocation

    1下载:
  2. 对操作系统的动态内存分配(其中包括首次适应算法和最佳适应算法)。可以对内存进行分配,可以查看内存分配情况,可以释放内存。释放内存时,要考虑前后是否有空闲块,有的话得合并,并要改变内存的大小以及视情况改变分配内存的起始地址。-Dynamic memory allocation of the operating system (including first-fit algorithm and the best fit algorithm). Memory can be allocated, you
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:478488
    • 提供者:何志芬
  1. replacement-algorithm

    0下载:
  2. 请求页式管理中的置换算法。 先输入选择的页面置换方式1或2或3 然后按回车。(DOS上面显示的是内存动态分配的情况和进程分配成功的情况和进程置换完后的情况和进程的命中率。) 再输入是否回收1或2 然后按回车。 就完成了。 关闭DOS系统就行了。-Introduction to Operating Systems
  3. 所属分类:OS Develop

    • 发布日期:2017-04-05
    • 文件大小:59447
    • 提供者:张程旭
  1. 1

    0下载:
  2. 操作系统实验,实验一,进程调度,实验二,作业调度,实验三,内存动态分配与回收,实验四,文件系统管理-Operation System
  3. 所属分类:OS Develop

    • 发布日期:2017-03-31
    • 文件大小:147287
    • 提供者:郑洪宝
  1. 操作系统-模拟动态分区分配

    0下载:
  2. 使用C语言实现模拟动态内存分区分配,运用最佳适应算法,最先适应算法以及最坏适应算法进行分区的动态扽陪管理,分多种情况进行分区的合并以及回收(The use of C language simulation of dynamic memory allocation, using the best fit algorithm, the adaptive algorithm and the worst fit algorithm with dynamic drag partition manageme
  3. 所属分类:操作系统开发

    • 发布日期:2018-01-10
    • 文件大小:4096
    • 提供者:翼展
« 12 3 »
搜珍网 www.dssz.com