搜索资源列表
OS_lab3_mm
- 本次实验主要围绕动态分区分配方式展开。熟悉并掌握动态分配五大算法:first fit,next fit,best fit,worst fit,quick fit-This experiment mainly around the dynamic partitioning distribution expanded. Familiar with and master the dynamic allocation of five algorithms: first fit, next fit, be
6787654765674
- C#获取磁盘所有的逻辑分区信息程序源码下载,点击获缺按钮,所有的磁盘信息都显示在下拉列表框中,用户可以进一步选择逻辑分区,当然这个小功能是配合其它的功能来用的,比如在一个大型的软件应用中,本功能用来让用户选择磁盘分区。 ,作者拥有版权,仅供学习与参考。-C# access to the disk all the logical partition information program source code download, click the button disk lacked, a
MP3_OK
- AT89C51SND1C 解码芯片做的硬盘MP3,软件还在完善中,现在只支持一块硬盘,一个分区, 至少可支持15层目录。只支持FAT32文件系统。支持USB1.1下载文件,速度300KB/S左右。 7.5*2个汉字液晶显示。可显示歌曲名,当前曲号等。可进行前后选曲。部分MP3文件不能解码。-AT89C51SND1C decoder chips do drive MP3, software is still perfect, now only support a hard drive, a
cfcard-hardware-boot
- 使用CF卡或硬盘来做启动盘设置,非常使用,做CF卡的启动分区设置等操作,必须设置活动分区。-great cfcard and hard disk to do the boot disk.
yingpanhao
- C#得到硬盘物理序列号。不是分区盘号,而是完整硬盘的唯一序列号。-C# get the sequence of physical drives. Not the partition plate number, but a complete hard drive unique serial number.
VCPartitionInfo
- 如何在VC下获取磁盘分区信息,用文件IO读取方式来获得-VC code to get partition information
CeStoreManager
- WinCE下存储设备的遍历以及磁盘分区的格式化、扫描和碎片整理类-Traverse under WinCE and disk storage devices formatted partitions, scan and defrag class
HardwareInfoDemo
- 获取硬盘分区信息的代码,能够获取所有分区,以及每个分区的大小,可用信息等-Get hard disk partition information of the code, it is possible to obtain all partitions, and each partition size, free information, etc.
whitebalance
- 基于matlab 的动态阈值 的白平衡算法,实现分区处理;-Dynamic threshold of the white balance algorithm based on matlab
2012SCIfenquchaxun
- 2012 SCI分区查询, 准确查询期刊所属的区,最新的查询-2012 SCI partition query, accurate query area belongs journals, the latest inquiry
wenjianxitong
- 编译执行模拟文件系统的实现程序,根据系统实现的功能反复操作,直至熟悉所有功能。在磁盘上建立一个文件作为文件存储器,此文件相当于一个磁盘分区,并在其上实现一个简单的单用户文件系统。- Compile and run simulation file system implementation process, repeated operation functions implemented in accordance with the system until familiar with all
SD
- SD卡分区识别驱动,用于U盘,SD卡分区使用。-SD card partition to identify the driver, for U disk, SD card partition.
Process-scheduling-simulation
- 计算机操作系统实验3.用C语言或Pascal语言分别实现采用首次适应算法和最佳适应算法的动态分区分配过程Allocate()和回收过程Free()。 -Computer Operating System Experiment 3. Using C language or Pascal language were achieved using the first-fit algorithm and best-fit algorithm for dynamic partitioning proc
dynamic-partition
- 操作系统: 模拟实现动态分区存储管理 实现的功能:实现了题目的所有要求,采用最先适应算法。 优点:窗口界面良好,给出了相应的提示信息,根据窗口的提示信息即可完成模拟实现动态分区存储管理;还可以修改主存的大小 直接修改MEM_MAX的值即可。 缺点:未给出最优适应算法。 -Operating System: simulation dynamic storage management functions to achieve: to achieve all
Example10_10
- 这是一个简单窗体拥有标题栏以及两个分区 在标题下属菜单中有复制粘贴剪切功能-Simple Forms
gdut_caozuoxitong
- 2013年广东工业大学动态分区分配操作系统实验,用于模拟主存的空闲区分配-Allocation in 2013, Guangdong University of dynamic partitioning experimental operating system, used to simulate the main memory free zone
computer--knowledge
- 了解操作系统的原理,不用很深,大概知道就行,慢慢积累。知道如何分区(分区的概念),如何安装操作系统。了解常用的系统工具和软件的作用和安装,学会一种输入法、一套办公软件的使用,有信心的话,学点简单的编程和数据库知识,网页制作和图片编辑软件的使用。-To understand the principles of the operating system, not very deep, probably know, slowly accumulating. Know how to partition
Multi-master-partition-boot
- 多主分区启动程序Pqboot32.exe弹出错误对话框的破解,以及自编Pqboot32加载程序。 适合多主分区切换独立启动系统。-Multi-master partition boot program Pqboot32.exe error dialog box pops up crack, and self Pqboot32 loader. Independent switching for multi-primary partition boot the system.
HardDiskInfo
- 获取计算机硬盘信息的类,包括磁盘数量,每个分区大小等信息-Get information on computer hard classes, the number of disks, including information such as the size of each partition
cunchu
- 1. 模拟操作系统的主存分配,运用可变分区的存储管理算法设计主存分配和回收程序,并不实际启动装入作业。 2. 采用最先适应法、最佳适应法、最坏适应法分配主存空间。 3. 当一个新作业要求装入主存时,必须查空闲区表,从中找出一个足够大的空闲区。若找到的空闲区大于作业需要量,这是应把它分成二部分,一部分为占用区,加一部分又成为一个空闲区。 4. 当一个作业撤离时,归还的区域如果与其他空闲区相邻,则应合并成一个较大的空闲区,登在空闲区表中。 5. 运行所设计的程序,输出有关数据结构表项