搜索资源列表
FileSpliter
- 快速切割文件为多块,有时候对于单个文件 大小有限制又不想用winrar的分卷压缩,而直接原文件的分块存放时就需要直接分割.-Rapid cutting document multi-block, sometimes for a single file size restrictions also do not want to use the sub-volume compression winrar directly block the original documents stored d
erjimuluwenjianmonixitong
- 针对操作系统进行二级目录文件系统的模拟 用disk.txt模拟硬盘,设定硬盘容量分为100个物理块,每个物理块的大小512字节,盘块之间用(‘\n’)分割。 因此一个盘块:512字节数据+1字节(‘\n’)分割符=513字节,则disk.txt 长度=51300( 100×513 )+1字节(文件结束符)=51301字节 。 -Secondary directory for the operating system file system simulation using simulat
optblock
- this code is to optimize the block partition into an image
BestFit
- 采用 最佳适应算法进行内存块的分配和回收,同时显示内存块分配和回收后空闲内存分区链的情况-With the adoption of best-fit algorithm for memory block allocation and recovery, also showed the recovered memory block allocation and free memory partition chain of
892
- 采用循环首次适应算法进行内存块的分配和回收,同时显示内存块分配和回收后空闲内存分区链的情况。-First-fit algorithm using cyclic block of memory allocation and recovery, also showed the recovered memory block allocation and free memory partition chain of circumstances.
memery
- 用C语言编写一段程序,模拟存储管理中利用链表结构进行循环首次适应法的内存分配与释放操作:首先用系统函数malloc在内存中申请一块大小为1000字节的空间,然后通过输入命令完成此块内存中的分区分配与回收算法,要求在屏幕上给出必要的结果显示。-Write a program using C language to simulate the use of list storage management cycle of the structure of first-fit memory alloca
sy5
- 动态分区分配算法的模拟 初始化功能:内存状态设置为初始状态。 分配功能:要求至少使用两种算法,用户可以选择使用。 回收功能: 空闲块的合并:即紧凑功能,用以消除碎片。当做碎片整理时,需要跟踪分配的空间,修改其引用以保证引用的正确性。 显示当前内存的使用状态,可以使用表格或图形。 -Dynamic partition allocation algorithm simulation
NAND_FLASH_FACTORY_PROGRAM
- 一、 概况 1. NAND 闪存的种类 2. NAND 闪存的框架 3. 非全页的编程(Partial Page Programming) 4. 从NAND 启动(Booting From NAND) 二、 NAND 闪存的可靠性问题 1. 坏块管理(Bad Block Management,BBM) 2. 坏块管理算法的规范 (BBM Algorithm Specification) 3. 6 个工厂编程的坏块管理的要素(Six BBM
mMemmoryManaay
- 内存管理函数myalloc() ,myfree()和测试使用时遇到的全部情况如:请求内存时遇到的内存不足,和能满足请求的几种情况:1.空闲区刚好与请求区大小一样2.空闲区比请求区大,但余下的不能划划分分会一个分区3.空闲区比请求区大但余下的能划分为一个空闲区。释放内存时也有好多种情况如:1.已经释放了的内存,再次要求释放2.请求释放的内存不属于myalloc分给的内存区3.释放成功,但释放块没有与前 -Memory management functions myalloc () myfree
BestFit100
- 采用 最佳适应算法进行内存块的分配和回收,同时显示内存块分配和回收后空闲内存分区链的情况-With the adoption of best-fit algorithm for memory block allocation and recovery, also showed the recovered memory block allocation and free memory partition chain of
inode
- inode 译成中文就是索引节点。每个存储设备或存储设备的分区(存储设备是硬盘、软盘、U盘等等)被格式化为文件系统后,应该有两部份,一部份是inode,另一部份是Block,Block是用来存储数据用的。而inode呢,就是用来存储这些数 据的信息,这些信息包括文件大小、属主、归属的用户组、读写权限等。inode为每个文件进行信息索引,所以就有了inode的数值。操作系统根据指令, 能通过inode值最快的找到相对应的文件。(The translation of inode into Chine