搜索资源列表
myprog
- 用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 * addr)
dlab-handout
- 模拟存器内存分配,有C语言编写 模拟存器内存分配,有C语言编写
simchain
- 模拟指针,使用固定的数组模拟指针的内存分配,提高分配效率-simulated target, the use of fixed arrays of simulated targets memory allocation and improve distribution efficiency
UnixFileSysSim
- 在内存中申请1M的空间来模拟存取设备,空间划分为三部分,第一部分用来存放位示图,用于标识数据块的使用情况,第二部分放置一个文件索引的数据,用于快速的查找数据,第三部分放置数据信息,第三部分划分为512块,每块512B,其256K,放置在1M空间的最末端,由第三部分的大小可知,第一部分只需64B即可,中间的部分用来存放文件索引。其他用到的存储单元由系统分配。
malloc_array
- 通过编写函数来模拟malloc()函数动态分配内存的功能-By writing the function to simulate malloc () function, the function of dynamically allocated memory
shiyan1
- 用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 * addr) 模拟UNI
siesta-3.0-b
- SIESTA用于分子和固体的电子结构计算和分子动力学模拟。SIESTA使用标准的Kohn-Sham自恰密度泛函方法,结合局域密度近似(LDA-LSD)或广义梯度近似(GGA)。计算使用完全非局域形式(Kleinman-Bylander)的模守恒赝势。基组是数值原子轨道的线性组合(LCAO)。它允许任意个角动量,多个zeta,极化和截断轨道。计算中把电子波函和密度投影到实空间网格中,以计算Hartree和XC势,及其矩阵元素。除了标准的Rayleigh-Ritz本征态方法以外,程序还允许使用占据轨
chunchuguanli
- 编写一个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
linux_elevator_simulation
- linux 内存分配算法,模拟电梯程序,学习linux内核的同学可供参考,-linux memory allocation algorithms, simulated elevator program, students learn linux kernel for reference, thank you. . . .
mymaloc
- 双链表实现malloc free,模拟内存分配,开辟数组以模拟-Doubly linked list implementation malloc free, analog memory allocation, open arrays to simulate
未命名6
- 主存空间分配与回收模拟实现 模拟内存分配的c语言实现(Simulation of main memory space allocation and recovery)