Welcome![Sign In][Sign Up]
Location:
Search - neicun

Search list

[OS Developneicun

Description: 页面淘汰算法采用LRU页面淘汰算法,并且在淘汰一页时,只将该页在页表中修改状态位。而不再判断它是否被改写过,也不将它写回到辅存。-pages out of LRU algorithm out pages algorithm, and in an out, only to the page in the page table to amend the state spaces. Rather than judge whether it be redrafted, it was not to return to the secondary deposit.
Platform: | Size: 11469 | Author: 阎玲 | Hits:

[Other resourcec++NeiCun

Description: c++ 内存管理算法和实现 c++ 内存管理算法和实现
Platform: | Size: 5735600 | Author: xietian | Hits:

[Delphi VCLneicun

Description: 获取内存的信息的代码,同时可以结束进程。
Platform: | Size: 185784 | Author: 贝贝牛 | Hits:

[OS Developneicun

Description: 用c++编的内存的分配与回收,用数组进行编写,采用结构体
Platform: | Size: 5824 | Author: 高歌 | Hits:

[OS DevelopNEICUN

Description: 这是模拟内存分配的C语言算法,请大家参考
Platform: | Size: 7352 | Author: pp | Hits:

[Otherneicun

Description: 本程序可以查看主机的内存信息简便是初学者的好程序
Platform: | Size: 27817 | Author: 李力 | Hits:

[OS Developneicun

Description: 我所采用的内存管理思想是链表管理思想,内存分配方案是最佳适应方案(best fit)。其主要的数据结构为 struct node { char* p int memosize int flag struct node* next } 这是一个链表的结点的数据结构,用它来管理内存的分配与回收。P 表示所指的分配的内存的首地址,memosize 表示分配的内存块的大小,flag 为一个标志量,表示内存块是否被占用。用 1 和 0 来表示被占用和不被占用。next 表示下一个结点的首地址。 内存管理包括一个分配内存的mm_request(unsigned int)函数,一个初始化所要管理的内存的mm_init()函数,一个空闲列表排序函数sort(),一个释放内存的mm_release(void* )函数和一个判断内存是否被占用的IsFree(int)函数。
Platform: | Size: 2706 | Author: ruikobe | Hits:

[OS Developneicun

Description: 装入作业:采用最先适应算法。输入要装入的作业的大小,程序查找合适位置插入;若空间不足,给出\"内存不足\"的提示;若总的剩余空间足够,但分配不连续,则提示整理内存;若作业总数已达最大值,在插入时给出提示,要求撤除不需要的作业。 撤除作业:需要输入要撤除的作业的起始地址,程序找到目标表目后,将其状态置空,并检查其相邻表目,若为空,则合并之;若输入的首地址没有在表中找到,则提示错误;空闲表目不能再次被撤除;起始地址为零的表目为操作系统,不能被撤除。 整理内存:将所有的已分配表目向低地址端移动,将其连成一片,所有空闲表目将被合并到表尾的\"空表目\"。
Platform: | Size: 2477 | Author: huang | Hits:

[OS programneicun

Description: 内存信息显示,可以读取内存的具体信息,非常简便
Platform: | Size: 14260 | Author: 林寿 | Hits:

[CSharpneicun

Description: c# 编写的内存外挂,内存挂非常基础的东西
Platform: | Size: 16848 | Author: 任晁 | Hits:

[Delphi VCLneicun

Description: 落雪内存智能整理源代码 有兴趣的
Platform: | Size: 212312 | Author: 孙伟 | Hits:

[Windows Developneicun

Description: 动态分区分配方式的模拟。理解内存分配的几种方式的基本原理,如:单一连续分配方式、固定分区分配方式和动态分区分配方式。通过编写程序实现动态分区分配方式,进一步理解动态分区分配方式中使用的数据结构和分配算法,加深对动态分区存储管理方式及其实现过程的理解。
Platform: | Size: 5563 | Author: has | Hits:

[OS Developneicun

Description: 页面淘汰算法采用LRU页面淘汰算法,并且在淘汰一页时,只将该页在页表中修改状态位。而不再判断它是否被改写过,也不将它写回到辅存。-pages out of LRU algorithm out pages algorithm, and in an out, only to the page in the page table to amend the state spaces. Rather than judge whether it be redrafted, it was not to return to the secondary deposit.
Platform: | Size: 256000 | Author: 阎玲 | Hits:

[VC/MFCc++NeiCun

Description: c++ 内存管理算法和实现 c++ 内存管理算法和实现-c++ memory management algorithms and realize c++ memory management algorithms and realize
Platform: | Size: 5735424 | Author: xietian | Hits:

[Delphi VCLneicun

Description: 获取内存的信息的代码,同时可以结束进程。-Memory access code information, as well as the end of the process.
Platform: | Size: 185344 | Author: 贝贝牛 | Hits:

[OS Developneicun

Description: 用c++编的内存的分配与回收,用数组进行编写,采用结构体-With c++ Series of memory allocation and recovery, for the preparation of an array, using the structure
Platform: | Size: 6144 | Author: 高歌 | Hits:

[OS DevelopNEICUN

Description: 这是模拟内存分配的C语言算法,请大家参考-This is a simulation of the C language memory allocation algorithm, please refer to
Platform: | Size: 7168 | Author: pp | Hits:

[Otherneicun

Description: 本程序可以查看主机的内存信息简便是初学者的好程序-This procedure can view the host
Platform: | Size: 1726464 | Author: 李力 | Hits:

[OS Developneicun

Description: 我所采用的内存管理思想是链表管理思想,内存分配方案是最佳适应方案(best fit)。其主要的数据结构为 struct node { char* p int memosize int flag struct node* next } 这是一个链表的结点的数据结构,用它来管理内存的分配与回收。P 表示所指的分配的内存的首地址,memosize 表示分配的内存块的大小,flag 为一个标志量,表示内存块是否被占用。用 1 和 0 来表示被占用和不被占用。next 表示下一个结点的首地址。 内存管理包括一个分配内存的mm_request(unsigned int)函数,一个初始化所要管理的内存的mm_init()函数,一个空闲列表排序函数sort(),一个释放内存的mm_release(void* )函数和一个判断内存是否被占用的IsFree(int)函数。
Platform: | Size: 2048 | Author: ruikobe | Hits:

[Windows Developneicun

Description: 动态分区分配方式的模拟。理解内存分配的几种方式的基本原理,如:单一连续分配方式、固定分区分配方式和动态分区分配方式。通过编写程序实现动态分区分配方式,进一步理解动态分区分配方式中使用的数据结构和分配算法,加深对动态分区存储管理方式及其实现过程的理解。-Dynamic partitioning of the simulated distribution patterns. Understand the memory allocation of the basic principles of a number of ways, such as: a single continuous distribution method, fixed geographical distribution patterns and dynamics of geographical distribution. Through the preparation process to achieve dynamic partitioning modes of distribution, and further understanding of the dynamic partition allocation methods used in data structure and distribution of algorithms, understanding of dynamic partitioning storage management approach and its realization process of understanding.
Platform: | Size: 5120 | Author: has | Hits:
« 12 3 »

CodeBus www.codebus.net