搜索资源列表

  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. 内存分配

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

    • 发布日期:2008-10-13
    • 文件大小:85773
    • 提供者:叶黄
  1. 最佳适应法

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

    • 发布日期:2024-05-20
    • 文件大小:68608
    • 提供者:吴晓辉
  1. 动态内存分配MemSrc

    0下载:
  2. 参考源码,学习例子-reference source, study examples
  3. 所属分类:Windows编程

    • 发布日期:2024-05-20
    • 文件大小:2048
    • 提供者:
  1. 内存分配

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

    • 发布日期:2024-05-20
    • 文件大小:86016
    • 提供者:叶黄
  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 dynami
  3. 所属分类:操作系统开发

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

    • 发布日期:2024-05-20
    • 文件大小:47104
    • 提供者: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
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-20
    • 文件大小:362496
    • 提供者:陈任全
  1. 进程调度与作业调度的模拟

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

    • 发布日期:2024-05-20
    • 文件大小:76800
    • 提供者:陈任全
  1. Simulate_Allocate_Memory_Implement_by_C

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

    • 发布日期:2024-05-20
    • 文件大小:3072
    • 提供者:丘方
  1. 4

    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-20
    • 文件大小:364544
    • 提供者:liang
  1. neicun

    0下载:
  2. 动态分区分配方式的模拟。理解内存分配的几种方式的基本原理,如:单一连续分配方式、固定分区分配方式和动态分区分配方式。通过编写程序实现动态分区分配方式,进一步理解动态分区分配方式中使用的数据结构和分配算法,加深对动态分区存储管理方式及其实现过程的理解。-Dynamic partitioning of the simulated distribution patterns. Understand the memory allocation
  3. 所属分类:Windows编程

    • 发布日期:2024-05-20
    • 文件大小:5120
    • 提供者:has
  1. cuncuqi

    0下载:
  2. 实现首次适应算法的动态分配过程alloc()和回收过程setfree()。其中,空闲分区通过空闲区说明表;在进行内存分配时,系统优先使用空闲区低端的空间。-Algorithm to achieve the first time to adapt to the dynamic allocation process alloc () and the recycling process setfree (). Among them, the
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:7168
    • 提供者:machunyu
  1. debugging_malloc

    0下载:
  2. SSD4 Exercise3答案,采用链表实现的动态内存分配。-SSD4 Exercise3 answers, the use of linked lists to achieve the dynamic memory allocation.
  3. 所属分类:系统编程

    • 发布日期:2024-05-20
    • 文件大小:2924544
    • 提供者:叶世权
  1. allocate

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

    • 发布日期:2024-05-20
    • 文件大小:8192
    • 提供者:tt
  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. 所属分类:操作系统开发

    • 发布日期:2024-05-20
    • 文件大小:56320
    • 提供者:慕林通
  1. DynamicMemoryAllocation

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

    • 发布日期:2024-05-20
    • 文件大小:478208
    • 提供者:何志芬
  1. Testmalloc

    0下载:
  2. 动态内存分配的C语言实现,调试通过,深入理解操作系统和指针-Dynamic memory allocation of C language, debugging through in-depth understanding of the operating system and pointers
  3. 所属分类:Windows编程

    • 发布日期:2024-05-20
    • 文件大小:761856
    • 提供者:卫良刚
  1. mem

    0下载:
  2. 标准C语言实现的动态内存分配,在VS2005下写成,但文件扩展名为.c 可以方便的移植到STM32、51等处理器中。内有动态内存分配的实现原理,仅共参考-Standard C language implementation of dynamic memory allocation, under written in VS2005, but the file extension. C can be easily ported to the
  3. 所属分类:微处理器(ARM/PowerPC等)

    • 发布日期:2024-05-20
    • 文件大小:176128
    • 提供者:杨孜
  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 d
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-20
    • 文件大小:4096
    • 提供者:翼展
« 12 3 4 5 6 7 8 9 10 ... 19 »

源码中国 www.ymcn.org