CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 模拟内存管理

搜索资源列表

  1. memory

    0下载:
  2. 该程序模拟可变分区存储管理技术管理内存,分配算法是最先适应分配算法。可以为作业分配内存、回收内存,在内存不够时可以进行主存紧凑。-The program simulated a variable partition storage management technology management memory allocation algorithm is first to meet the allocation algorithm. Can allocate memory for the op
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-29
    • 文件大小:36765
    • 提供者:jlliu
  1. MemoryManage

    0下载:
  2. 在linux环境下,用c语言写的模拟linux内存管理的实验代码。-In the linux environment, the simulation with c language to write test code linux memory management.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-02
    • 文件大小:3564
    • 提供者:lidong
  1. mm

    0下载:
  2. 内存管理程序,实现页面调度模拟,采用了FiFo和LRU两种方式-A program use the method of FiFo and LRU to realize page control
  3. 所属分类:Java Develop

    • 发布日期:2017-04-01
    • 文件大小:6133
    • 提供者:liuyun
  1. os

    0下载:
  2. 模拟操作系统,模拟实现操作系统的文件管理,进程管理,内存管理和设备管理等内容。-Operating system simulation, simulation to achieve the operating system file management, process management, memory management and device management and so on.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-16
    • 文件大小:404156
    • 提供者:康业凯
  1. memory

    0下载:
  2. 内存管理模拟,模拟windows的内存,采用SDL,和C++编写,模拟了Windows的first fit 内存申请模式。-Memory management simulation
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-15
    • 文件大小:3614937
    • 提供者:liuyufan
  1. MemoryManager(2010)

    0下载:
  2. 内存管理模拟,书本上例题模拟实现内存管理模拟,书本上例题模拟实现-Memory management modeling, simulation implementation examples in books
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:20988
    • 提供者:dugumengyouzi
  1. wenjianguanli

    2下载:
  2. 一、 任务 设计模拟操作系统文件系统的程序。 二、 目的 通过具体的文件存储空间的管理、文件的物理结构、目录结构和文件操作的实现,加深对文件系统内部功能和实现过程的理解。 三、功能要求 (1)在内存中开辟一个空间作为文件存储器,在其上实现一个简单的文件系统。退出这个文件系统时,需要该文件系统的内容保存到磁盘上,以便下次可以将其回复到内存中来。 (2)文件存储空间管理可采取显式链接(如FAT)或者其他方法。(即自选一种方法) (3)空闲空间管理可采用位图或者
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:79937
    • 提供者:卢思琦
  1. process

    0下载:
  2. 模拟可变分区内存管理实验,代码具体情况不知是否符合需求者-Analog variable partition memory management experiments
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:910210
    • 提供者:laiwenlu
  1. FIFO-Ver2

    0下载:
  2. 在VC环境下模拟操作系统的FIFO页式内存管理的实例-VC environment in the operating system simulation-style FIFO memory management example page
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:902353
    • 提供者:冯涛
  1. Memory2

    0下载:
  2. 模拟存储器管理2,针对作业进行的内存管理系统模拟,VC6.0-2 analog memory management, memory management for operating the system simulation, VC6.0++
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-09
    • 文件大小:189465
    • 提供者:Sunny
  1. Management-of-Ram

    0下载:
  2. 操作系统内存管理机制模拟软件,可以形象的模拟操作系统内存管理的一举一动。-Operating system memory management mechanism simulation software, you can simulate the image of the operating system memory management' s every move.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-30
    • 文件大小:535717
    • 提供者:Leon
  1. T_5424

    0下载:
  2. 操作系统第一次实验参考资料 可变分区存储管理 编写一个C程序,用char *malloc(unsigned size)函数向系统申请一次内存空间(如size=1000,单位为字节),用首次适应法 addr = (char *)fmalloc(unsigned size) 和 ffree(unsigned size,char * addr)(基本要求)或 循环首次适应法(提高一步) addr = (char *)lmalloc(unsigned size) 和
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-09
    • 文件大小:13822
    • 提供者:黄泽霖
  1. OSexperience7

    1下载:
  2. 设计程序模拟内存的动态分区法存储管理。 内存空闲区使用自由链管理,采用最坏适应算法从自由链中寻找空闲区进行分配。 假定系统的内存共640K,初始状态为操作系统本身占用64K。 t1时间后,有作业A、B、C、D分别请求8K、16K、64K、124K的内存空间; t2时间后,作业C完成; t3时间后,作业E请求50K的内存空间; t4时间后,作业D完成。 要求编程序分别输出t1、t2、t3、t4时刻内存的空闲区的状态。 -Design program to si
  3. 所属分类:Windows Develop

    • 发布日期:2014-04-26
    • 文件大小:1024
    • 提供者:
  1. chunchuguanli

    0下载:
  2. 编写一个C程序,用char *malloc(unsigned size)函数向系统申请一次内存空间(如size=1000,单位为字节),用首次适应法 addr = (char *)fmalloc(unsigned size) 和 ffree(unsigned size,char * addr)(基本要求)或 循环首次适应法(提高一步) addr = (char *)lmalloc(unsigned size) 和 lfree(unsigned size,char
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-08
    • 文件大小:12680
    • 提供者:hujiangang
  1. Page_Replacement

    0下载:
  2. 操作系统实验之页面置换管理算法 代码完整,模拟计算机内存管理-operal system experiment_page-replacement
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:22353
    • 提供者:jzw
  1. Test3

    0下载:
  2. 系统内存管理源代码,自己写了一上午完成的。可以实现内存的自动分配,模拟操作系统的实际操作-Memory management system source code, to write the morning complete. Automatic allocation of memory can simulate the actual operation of the operating system
  3. 所属分类:OS Develop

    • 发布日期:2017-04-04
    • 文件大小:1472
    • 提供者:chen
  1. memory-management-

    0下载:
  2. 用C语言模拟虚拟存储器管理--模拟内存分配与回收。-Virtual simulation in C language memory management- analog memory allocation and recovery.
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:1330
    • 提供者:剑煮江湖
  1. LRU

    0下载:
  2. 利用LRU算法仿真请求页面系统 1、设计内容:用高级语言编写和调试一个内存分配程序,加深对内存分配算法的理解。 2、设计要求: 1) 实现请求分页存储管理方式的页面置换算法:近期最久未使用算法(LRU) 2) 内存物理块数固定为3个,对多个作业采用可变分配全局置换的策略分配物理块 3) 作业数量与作业大小(0-9页)可在界面进行设置 4) 所有作业按RR算法进行调度,时间片长度为1秒 5) 可为每个作业随机产生引用的页面串,也可以人工输入引用的页面串,页面
  3. 所属分类:OS Develop

    • 发布日期:2017-05-08
    • 文件大小:1962400
    • 提供者:李超
  1. toymips

    0下载:
  2. 一个mips处理器的模拟系统,用于学习目的,包括内存管理模块,计算器等功能-A mips processor simulation system for learning purposes, including memory management module, calculator and other functions
  3. 所属分类:SCM

    • 发布日期:2017-04-06
    • 文件大小:284638
    • 提供者:张驰
  1. memery-management

    0下载:
  2. 文件操作;堆排序算法;二分插入算法; 内存管理模拟和自定义的内存分配、释放功能等;所有的是一个整体。-File operations heap sorting algorithm Binary Insert Sort algorithm memory management simulation and custom memory allocation and release functions all as a whole.
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:227751
    • 提供者:Foster
« 1 2 3 4 5 6 7 89 10 11 12 13 14 15 »
搜珍网 www.dssz.com