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

搜索资源列表

  1. DynMem

    0下载:
  2. 一个模拟动态内存分配的小程序,包含最优算法和最先算法,c#环境下编写-a simulation of dynamic memory allocation small programs, including the optimal algorithm and the first algorithm, c # prepared environment
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:14.07kb
    • 提供者:pao
  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
    • 文件大小:354.58kb
    • 提供者:陈任全
  1. ldm

    0下载:
  2. 动态内存分派.. .. . -dynamic memory allocation.
  3. 所属分类:操作系统开发

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

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

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

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

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

    0下载:
  2. 简单的动态内存管理程序源代码,包含测试代码。
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:56.18kb
    • 提供者:梁开祝
  1. cpu_algrothm

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

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

    0下载:
  2. 操作系统试验:操作系统--PCB模拟(动态优先调用与动态内存分配)
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:7.38kb
    • 提供者:燕子
  1. 操作系统——PCB模拟代码

    0下载:
  2. 这是帮别人做的程序,模拟操作系统中进程控制块(包括多道系统中动态优先级进程调度和动态内存分配),用tc2.0做的,带有图形界面和简陋的控制台。现在把源代码贴出来。-This to help procedure that others make, simulation operating system process control piece (whether including many dishes of system dynamic PRI process dispatcher and d
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:11.75kb
    • 提供者:草原
  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
    • 文件大小:39.06kb
    • 提供者:陈任全
  1. kechengsheji

    0下载:
  2. 操作系统课程设计 C++ 动态内存分配与管理 -Operating system curriculum design C++ Dynamic memory allocation and management
  3. 所属分类:OS Develop

    • 发布日期:2017-04-26
    • 文件大小:67.99kb
    • 提供者:wtl
  1. Memory

    0下载:
  2. 一个自己编写的用于实现计算机动态内存分配的程序,和大家分享一下,请多指教-I have written a computer used to implement dynamic memory allocation procedures, and share with you, please advise
  3. 所属分类:OS Develop

    • 发布日期:2017-03-31
    • 文件大小:63.02kb
    • 提供者:万接喜
  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
    • 文件大小:8.14kb
    • 提供者:tt
  1. Memory_Management

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

    • 发布日期:2017-04-24
    • 文件大小:30.31kb
    • 提供者:litao
  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
    • 文件大小:54.97kb
    • 提供者:慕林通
  1. mymalloc

    0下载:
  2. 高人编写的动态内存处理函数,非采用malloc,如果想深入研究动态内存管理,此程序是个不错的选择!-Gao Ren prepared by the dynamic memory handling functions, the non-use of malloc, if you want to in-depth study of dynamic memory management, this program is a good choice!
  3. 所属分类:OS Develop

    • 发布日期:2017-03-30
    • 文件大小:4.13kb
    • 提供者:fang
  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
    • 文件大小:467.27kb
    • 提供者:何志芬
  1. 内存管理

    0下载:
  2. 模拟实现动态分区内存管理机制,使用两种策略first-fit和next-fit(Simulation Implementation of dynamic zoning memory management mechanism Using two strategies, first-fit and next-fit)
  3. 所属分类:操作系统开发

    • 发布日期:2017-12-16
    • 文件大小:4.5mb
    • 提供者:nero24
  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
    • 文件大小:4kb
    • 提供者:翼展
  1. labview动态载入VI实例

    0下载:
  2. labview中通过VI引用动态调用,可以保证VI在需要时才被装入内存,与静态调用相比节约了内存资源。这几个实例介绍了VI动态载入的方法。
  3. 所属分类:LabView编程

« 12 3 4 5 »
搜珍网 www.dssz.com