搜索资源列表

  1. neicunfenpeimonichengxu

    0下载:
  2. 这是一个用C语言实现的计算机内存分配的模拟程序-This is a C language of computer memory allocation simulation program
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:2048
    • 提供者:yue
  1. illu_buddy

    0下载:
  2. 自己写的一个演示伙伴算法内存分配的程序,不过性能不是很好,有兴趣的朋友可以加以改进-himself wrote a demonstration of the partnership algorithm memory allocation procedures, but performance was not very good. Interested friends can be improved
  3. 所属分类:其他小程序

    • 发布日期:2024-05-12
    • 文件大小:419840
    • 提供者:
  1. mmc(skyw)

    0下载:
  2. 用VC写的模拟内存分配管理的代码,经测试运行完全正确-VC write memory allocation management simulation code, the test run entirely correct
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-12
    • 文件大小:204800
    • 提供者:skyw
  1. differenct

    0下载:
  2. 堆和栈的区别 一、预备知识—程序的内存分配 一个由c/C++编译的程序占用的内存分为以下几个部分 1、栈区(stack)— 由编译器自动分配释放 ,存放函数的参数值,局部变量的值等。其操作方式类似于数据结构中的栈。 2、堆区(heap) — 一般由程序员分配释放, 若程序员不释放,程序结束时可能由OS回收 。注意它与数据结构中的堆是两回事,分配方式倒是类似于链表,呵呵。 3、全局区(静态区)(static)—,全局变
  3. 所属分类:技术管理

    • 发布日期:2024-05-12
    • 文件大小:14336
    • 提供者:stevephen
  1. vxmalloc

    0下载:
  2. This version of malloc for VxWorks contains two different algorithms. One is the BSD based Kingsley "bucket" allocator which has some unique fragmentation behavior. The other is Doug Lea s well tested allocator that trie
  3. 所属分类:VxWorks

    • 发布日期:2024-05-12
    • 文件大小:26624
    • 提供者:nico zhu
  1. 234234234234234

    0下载:
  2. 内存分配问题 内存分配问题 内存分配问题 -memory allocation memory allocation memory allocation problem Memory allocation of memory allocation memory allocation memory allocation problem
  3. 所属分类:Internet/网络编程

    • 发布日期:2024-05-12
    • 文件大小:2441216
    • 提供者:唐涛
  1. teamspeak

    0下载:
  2. 动态分区内存分配与回收算法,可利用C++实现可变分区内存分配与回收算法-dynamic memory allocation with the district recovery algorithm can be used to achieve Variable Area C memory allocation and recovery algorithm
  3. 所属分类:文件格式

    • 发布日期:2024-05-12
    • 文件大小:1274880
    • 提供者:李户
  1. schedul_mfcV2.0

    0下载:
  2. 自己写的操作系统的实验:处理机调度模拟及内存分配模拟二合一小程序。-himself wrote of the operating system : processor scheduling simulation and memory allocation procedures simulated small combo.
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:102400
    • 提供者:林和
  1. meryf

    0下载:
  2. 操作系统实验四:连续式与分页式主存管理的模拟实现 模拟在连续分配与分页管理两种方式下,主存空间的分配与回收,帮助学生加深了解存储器管理的工作过程。 注意,该实验为模拟实验,并不要求进行真正的内存分配与回收,主要是编写程序模拟其中过程即可。 -four experimental operating system : Continuous and pagination main memory management simulat
  3. 所属分类:系统编程

    • 发布日期:2024-05-12
    • 文件大小:2048
    • 提供者:qiuzhicheng
  1. memory_management

    0下载:
  2. 关于内存分配的一些重要经验。作者积累了近十年工作中所遇到的各种内存管理方面的细节问题并加以详细说明。-Memory allocation on a number of important experience. The author has accumulated nearly a decade of work that were encountered in a variety of memory management details
  3. 所属分类:文件格式

    • 发布日期:2024-05-12
    • 文件大小:16384
    • 提供者:pangdang
  1. heap

    0下载:
  2. 堆与栈有什么区别,预备知识—程序的内存分配-程序的内存分配-Heap and stack What is the difference between the preparation of knowledge- the memory allocation procedures- procedures for memory allocation
  3. 所属分类:软件工程

    • 发布日期:2024-05-12
    • 文件大小:3072
    • 提供者:draw
  1. 2

    0下载:
  2. :在可变分区管理方式下采用首次适应算法实现主存分配和回收。 [提示]: (1) 可变分区方式是按作业需要的主存空间大小来分割分区的。当要装入一个作业时,根据作业需要的主存容量查看是否有足够的空闲空间,若有,则按需分配,否则,作业无法装入。假定内存大小为128K,初始状态见右图。空闲区说明表格式为:起址——指出空闲区的起始地址;长度——一个连续空闲区的长度;状态——有两种状态,一种是“未分配”状态,另一种是“空表目”状态。 (
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:62464
    • 提供者:liu
  1. NEICUN

    0下载:
  2. 这是模拟内存分配的C语言算法,请大家参考-This is a simulation of the C language memory allocation algorithm, please refer to
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:7168
    • 提供者:pp
  1. OS

    0下载:
  2. C++实现的模拟操作系统,带有报告。 有界面,实现了进程主调度,内存分配,模拟文件系统功能-C++ Achieve simulated operating system, with the report. There are interfaces, the main achievement of the process scheduling, memory allocation, simulated file system func
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:797696
    • 提供者:
  1. ncfp

    0下载:
  2. 用C实现简单的可变分区的首次适应算法、内存回收算法的模拟,并将模拟运行的结果显示出来。假设内存空间实际大小是100M,共有3个作业请求使用内存空间,作业请求、释放内存空间的顺序如下: 作业A 申请30M内存空间 ――》 作业 B 申请 20M内存空间 ――》作业 A 释放内存空间 ――》 作业C 申请 50M 内存空间 ――》作业B 释放内存空间 ――》作业C释放内存空间。 要求输出每次内存分配、释放操作后,系统中已分配区情
  3. 所属分类:其他小程序

    • 发布日期:2024-05-12
    • 文件大小:2048
    • 提供者:cm
  1. os2

    0下载:
  2. 内存管理 编写一个包含两个线程的进程,一个线程用于模拟内存分配活动,一个线程用于跟踪第一个线程的内存行为,并且要求两个线程之间通过信号量实现同步.模拟内存活动的线程,可以从一个文件中读出要进行的内存操作.-Memory management to prepare a process contains two threads, a thread used to simulate the memory allocation activ
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:75776
    • 提供者:王健
  1. fenpeihuishou

    0下载:
  2. 内存分配与回收程序,用C语言编写,没有带注释,所以可能需要一点时间看懂,能运行。-Memory allocation and recovery procedures, using C language, did not take notes, it may take some time to understand, will be able to run.
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:2048
    • 提供者:杰儿
  1. test3

    0下载:
  2. 操作系统课程设计会用到的,用C++开发的,模拟内存分配和回收的算法,很不错,亲自试验过哦-Operating system will be used in curriculum design, and C++ Developed to simulate the memory allocation and recovery of the algorithm, very good, personally tested oh
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-12
    • 文件大小:863232
    • 提供者:张张
  1. FONT_MACRO

    0下载:
  2. 内存分配示例程序,详细哦MACRO.c中所有函数都包括-Examples of memory allocation procedures, detailed MACRO.c Oh all the functions are included
  3. 所属分类:GIS编程

    • 发布日期:2024-05-12
    • 文件大小:1024
    • 提供者:贲伟
  1. ExperimentOfOperationSystem

    0下载:
  2. 多线程调度自动 手动控制 应用程序内存分配模拟-Multi-threaded scheduling automatic manually control the application memory allocation simulation
  3. 所属分类:进程与线程

    • 发布日期:2024-05-12
    • 文件大小:276480
    • 提供者:梁世豪
« 1 2 34 5 6 7 8 9 10 ... 50 »

源码中国 www.ymcn.org