CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - first fit

搜索资源列表

  1. Mem_Test2.0

    0下载:
  2. 虚拟内存管理,用最先适配法,最优适配法,最差适配法-Virtual Memory management using First-fit, Best-fit and Worst-fit
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:2518
    • 提供者:河南
  1. MEMORY_1

    0下载:
  2. 存储器管理模拟程序,本模拟程序采用首次适应算法-memory management simulation, the simulation program using the first-fit algorithm
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:2441
    • 提供者:crony
  1. firstaid

    0下载:
  2. 操作系统中实现内存分配中要用到的首次适应算法-achieve operating system memory allocation, use of the first-fit algorithm
  3. 所属分类:WEB源码

    • 发布日期:2008-10-13
    • 文件大小:2731
    • 提供者:gnehc_663
  1. ZCKJFPHS

    0下载:
  2. 主存空间的分配与回收.采用可变分区存储管理,使用首次适应算法、循环首次适应算法、最佳适应算法三种算法完成设计。-main memory space for the distribution and recovery. Using variable storage area management, the use of the first-fit algorithm, the first cycle of adaptation algorithms, best adaptation algorit
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:280536
    • 提供者:罗小明
  1. dongtaiguanli

    0下载:
  2. 在对数据结构有一定掌握程度的情况下设计合理的数据结构来描述存储空间,实现分区存储管理的内存分配功能,应该选择最合适的适应算法(首次适应算法,最佳适应算法,最后适应算法,最坏适应算法),实现分区存储管理的内存回收算法,在这些存储管理中间必然会有碎片的产生,当碎片产生时,进行碎片的拼接,等等相关的内容-structure of the data in a certain degree of master of rational design of the data structure to desc
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:306934
    • 提供者:sunwei
  1. yang

    0下载:
  2. 首次适应算法(First Fit): 从空闲分区表的第一个表目起查找该表,把最先能够满足要求的空闲区分配给作业,这种方法目的在于减少查找时间。为适应这种算法,空闲分区表(空闲区链)中的空闲分区要按地址由低到高进行排序。该算法优先使用低址部分空闲区,在低址空间造成许多小的空闲区,在高地址空间保留大的空闲区。
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:2000
    • 提供者:王峰
  1. dongtaifenqu

    0下载:
  2. 动态分区算法:程序模拟四种动态分区分配算法:首次适应算法、循环首次适应算法、最佳适应算法和最坏适应算法的工作过程。-Dynamic partitioning algorithm: program to simulate the dynamic partition of four algorithms: the first fit algorithm, loop the first fit algorithm, the best fit algorithm and the worst fit al
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:509662
    • 提供者:踏雪
  1. os5

    0下载:
  2. 设可供分配的内存储器为1MB(1000KB),内存分配采用动态分区分配策略,分区分配的数据结构为空闲分区链,分配算法采用首次适应算法(FF) 系统仅有一个CPU;作业提交时申明需要的CPU时间和内存大小(以KB为单位)。-Located within the memory available for allocation to 1MB (1000KB), memory allocation dynamic partition allocation strategies, area distrib
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3259
    • 提供者:yilijuan
  1. new.cpp.tar

    0下载:
  2. 首次适应算法,最佳适应算法,最坏适应算法VC6.0++S实现-first fit
  3. 所属分类:OS Develop

    • 发布日期:2017-04-04
    • 文件大小:1869
    • 提供者:ank
  1. Memory

    0下载:
  2. 内存管理 设计一个内存管理器,支持至少两种分配策略。 对不同分配策略的性能进行评估。 利用c++语言实现了,First-fit,next-fit。两种分配算法。并实现了测试程序 -Design a memory management memory management, and support for at least two types of allocation strategies. On the performance of different allocation st
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:715895
    • 提供者:张帅
  1. neicunguanli

    0下载:
  2. 本实验要求建造一个没有虚拟功能的内存管理系统.任务如下:  设计一个内存管理器,支持至少两种分配策略,如first-fit,next-fit,best-fit,worst-fit等.  对不同分配策略的性能进行评估. 这次实验主要实现了first fit和best fit两个算法。 -This experiment did not require the construction of a virtual memory management sys
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:273293
    • 提供者:小江
  1. memory

    0下载:
  2. 模拟内存分配算法,功能强大,first fit-Analog memory allocation algorithm, a powerful, first fit
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:2106
    • 提供者:XIEXIE
  1. 4140521

    0下载:
  2. 分析Unix最先适应(first fit,ff)存储分配算法。即map数据结构、存储分配函数ma lloc()和存储释放函数mfree(),找出与算法有关的成分。修改上述算法有关成分,使其分别体现BF(best fit,最佳适应)分配原则WF(worst fit,最坏适应)分配原则。-Analysis of Unix was first to adapt to (first fit, ff) memory allocation algorithm. The map data structure,
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:1247
    • 提供者:高飞
  1. code

    0下载:
  2. VC++MFC模拟连续分配内存存储管理系统,首次适应算法 、循环首次适应算法、最佳适应算法 -VC++ MFC allocates memory for continuous analog storage management system, the first fit algorithm, loop the first fit algorithm, the best fit algorithm
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-03-29
    • 文件大小:223202
    • 提供者:赵凯
  1. cunchuguanli

    0下载:
  2. 1.分析UNIX最先适应(First Fit,FF)存储分配算法,即map数据结构、存储分配函数malloc()和存储释放函数mfree(),找出与算法有关的成分。 2.修改上述与算法有关的成分,使其分别体现BF(Best Fit,最佳适应)分配原则和WF(Worst Fit,最坏适应)分配原则。 -1. The first adaptation of UNIX (First Fit, FF) memory allocation algorithm, that is, map the d
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-27
    • 文件大小:1790
    • 提供者:pearl
  1. first-fit_mem_manage

    0下载:
  2. 首次适应算法管理内存简单练习,链表简单模拟-First fit algorithm for memory management simple exercises, lists simple simulation
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:1582
    • 提供者:石皓伟
  1. best-fit-and-first-fit-in-c

    0下载:
  2. First fit and Best fit memory managment scheme implementation in C-First fit and Best fit memory managment scheme implementation in C++
  3. 所属分类:OS Develop

  1. first-fit

    2下载:
  2. 一维装箱问题的First Fit算法伪代码-First fit algorithm of 1D bin packing program
  3. 所属分类:software engineering

    • 发布日期:2015-03-24
    • 文件大小:1024
    • 提供者:joker yu
  1. First-fit-algorithm

    0下载:
  2. 在可变分区管理方式下采用首次适应算法实现主存分配和回收。-In variable partition management algorithm used first to adapt the main memory allocation and recovery.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-30
    • 文件大小:221947
    • 提供者:
  1. First Fit算法的java实现

    0下载:
  2. JAVA模拟内存分配与释放:首次适应算法(JAVA analog memory allocation and release)
  3. 所属分类:系统/网络安全

    • 发布日期:2018-04-29
    • 文件大小:1024
    • 提供者:Tiger_SC
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com