CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 操作系统开发 搜索资源 - 模拟 basic

搜索资源列表

  1. cibidiaodu

    0下载:
  2. 有多个访盘要求在等待时对这些要求的顺序的确定安排或调整,只在减少平均磁盘服务时间就成为磁盘调度,而磁盘调度有多种的调度算法,其中最短路径优先是其中基本一种,本课程设计是使用C++程序设计语言,在windows平台下对此调度算法进行模拟,通过此调度算法的模拟来进一步的加深对磁盘最短路径优先调度的了解,及对C++程序设计语言的使用。 关键词:磁盘调度 最短路径优先 操作系统 课程设计 -set to visit a number of requests waiting for the rig
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:42.69kb
    • 提供者:戴天天
  1. sche

    0下载:
  2. 编程模拟实现具有快表的基本分段存储管理方式地址变换过程-programming with fast simulation table above the basic storage management addresses transformation process
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:8.64kb
    • 提供者:周彦斌
  1. process_attemper

    1下载:
  2. 1、 :编写并调试一个模拟的进程调度程序,采用“最高优先数优先”调度算法对进程进行调度。 “最高优先数优先调度算法的基本思想是把CPU分配给就绪队列中优先数最高的进程。尝试静态优先数与动态优先数两种方法: a) 静态优先数是指优先数在整个进程运行期间不再改变。优先数可以在数据输入时指定,也可以根据到达顺序、运行时间确定。 b) 动态优先数是指进程的优先数在创建进程时可以给定一个初始值,并且可以按一定原则修改优先数。例如进程获得一次CPU后就将其优先数减少1。或者进程等待的时间超过某一时限
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:357.4kb
    • 提供者:huiting_liu
  1. 页面置换算法的模拟实现和计算命中率

    0下载:
  2. 基本算法思想 OPT:该算法的基本思想是用二维数组page2[40][2] 的第一列存储装入内存的页面,而第二列用作标记位计数器。每当发生缺页时,就从内存中调出一页,首先将内存中的页面一一与要调入内存中的页面之后的页面比较,如果两个页面不相等,则内存中相应的页面的标记位计数器加一,直至到有相等的页面,则该页面的比较停止,再重复以上操作,直至内存中的页面全部比较完。然后找出内存中页面的标记位最大的页面,而该页就是要置换出来的页。 FIFO: 该算法的基本思想是用队列queue存储内存中的页面,队列
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:25.8kb
    • 提供者:何泽荣
  1. 用login二级目录的文件系统

    1下载:
  2. 这个程序是模拟采用二级目录结构的磁盘文件系统中的文件操作,它可以实现对文件的一些基本管理,如:读、写、删除文件等。通过这个程序可掌握文件子系统的原理,加深对二级目录结构的文件系统中用户管理、文件管理、目录管理的理解,并用程序实现对文件子系统的模拟。-the procedure is simulated using two disk directory structure of the file system file manipulation, it can be achieved on som
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:7.19kb
    • 提供者:程倩
  1. lru

    0下载:
  2. LRU模拟:其基本原理为:如果某一个页面被访问了,它很可能还要被访问;相反,如果它长时间不被访问,再最近未来是不大可能被访问的。-LRU simulation: the basic principles: If a page was visited, which are likely to be visited the other hand, if it is not a long visit, and then the future is unlikely to be a recent vi
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:4.2kb
    • 提供者:钟华
  1. crossing-light

    0下载:
  2. 这事我门这学期的操作系统进程一部分的小项目,基本的十字路*通灯模拟。这是我的版本2,拿来跟大家分享一下-This semester I am the door of the operating system in this part of the process of small projects, the basic simulation of traffic lights at the crossroads. This is my version 2, used to share with
  3. 所属分类:OS Develop

    • 发布日期:2017-05-10
    • 文件大小:2.37mb
    • 提供者:cyh
  1. DesignandImplementationofJobschedulingsimulationpr

    0下载:
  2. 先来先服务(FCFS)、短者优先(SJF)、高优先权优先(FPF)是操作系统作业调度的三种基本调度算法。本文用程序模拟这三种调度算法的过程。通过对各个进程在调度过程中参数(开始时间、完成时间、平均周转时间和平均带权时间等)的变化的记录,加深对三种调度过程的认识。-First-come, first-served (FCFS), short-preferred (SJF), a high priority priority (FPF) is the operating system, job sc
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:57.12kb
    • 提供者:willism
  1. 4

    0下载:
  2. (1)掌握页式管理基本原理 (2)掌握几种常用页面置换算法 按照最不经常使用页面置换算法(LFU Least Frequently Used)设计页面置换模拟程序-(1) master the basic principles of page-style management (2) The master of several commonly used page replacement algorithms in accordance with the least frequently
  3. 所属分类:OS Develop

    • 发布日期:2017-04-05
    • 文件大小:1.48kb
    • 提供者:超越
  1. jinchengdiaodu

    0下载:
  2. 一个模拟基本进程调度的程序。可以很好的理解进程调度的过程-A simulation of the basic process scheduling program. Can be a good understanding of the process of scheduling the process of
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:1008byte
    • 提供者:兰天
  1. neicunguanli

    0下载:
  2. 操作系统 内存管理的模拟,很好的理解内存管理的基本原则和方法-The operating system memory management simulation, a good understanding of the basic principles of memory management and methods of
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:1.22kb
    • 提供者:兰天
  1. OS4

    0下载:
  2. 文件系统实验,模拟文件系统实现的基本功能-File system experiments, analog realization of the basic functions of file systems
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:3.15kb
    • 提供者:deng
  1. beershell

    0下载:
  2. 一个简单的模拟shell的程序,通过现有的Linuxshell命令对其进行基本的操作-A simple procedure for the simulation shell, through the existing Linuxshell its basic operation command
  3. 所属分类:OS Develop

    • 发布日期:2017-04-05
    • 文件大小:1.71kb
    • 提供者:gang li
  1. caozuoxitong

    0下载:
  2. 模拟操作系统,文件存储,内存使用情况,各种算法,基本功能全部实现,适合做操作系统课程设计-Simulated operating system, file storage, memory usage, various algorithms, the basic function of all the realization of the operating system suitable for curriculum design
  3. 所属分类:OS Develop

    • 发布日期:2017-04-23
    • 文件大小:111.45kb
    • 提供者:田振平
  1. fenye

    0下载:
  2. 实现操作系统中基本分页算法的变成模拟,包括查看页表和回收分配物理块的功能-To achieve the basic operating system paging algorithms into simulation, including viewing the page table allocation and recovery of physical function of the block
  3. 所属分类:OS Develop

    • 发布日期:2017-03-31
    • 文件大小:1.01kb
    • 提供者:柯金龙
  1. WorROS

    0下载:
  2. 具有操作系统的基本功能。能够模拟CPU以及CPU管理、模拟内存、模拟硬盘、模拟内存管理、模拟硬盘管理、模拟进程管理、模拟指令系统、模拟中断处理等,是单用户多任务操作系统。-With the operating system s basic functions. To simulate the CPU and CPU management, analog memory, analog disk, analog memory management, disk management simulatio
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:87.25kb
    • 提供者:剑心
  1. Page

    0下载:
  2. 《操作系统》课程设计,模拟基本页式存储管理-"Operating System" curriculum design, simulate basic page storage management
  3. 所属分类:OS Develop

    • 发布日期:2017-05-29
    • 文件大小:10.85mb
    • 提供者:丁骥
  1. Page-replacement

    0下载:
  2. 页面置换算法的模拟实现及命中率对比.通过模拟实现几种基本页面置换的算法,了解虚拟存储技术的特点-Simulation of page replacement algorithm, and the hit rate compared to several basic page replacement algorithm through simulation to understand the characteristics of virtual storage technology
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:165.52kb
    • 提供者:Qugo
  1. caozuoxitong

    0下载:
  2. 操作的系统的磁盘管理的模拟,模拟其基本原理,实现其功能-Operating system disk management, simulation, simulation of the basic principle, to achieve its function
  3. 所属分类:OS Develop

    • 发布日期:2017-04-08
    • 文件大小:261.23kb
    • 提供者:谢伟月
  1. caozuoxitong

    0下载:
  2. 上机实践内容: 编写并调试一个模拟的进程调度程序,采用“最高优先数优先”调度算法对五个进程进行调度。 “最高优先数优先”调度算法的基本思想是把CPU分配给就绪队列中优先数最高的进程。   静态优先数是在创建进程时确定的,并在整个进程运行期间不再改变。 动态优先数是指进程的优先数在创建进程时可以给定一个初始值,并且可以按一定原则修改优先数。例如:在进程获得一次CPU后就将其优先数减少1。或者,进程等待的时间超过某一时限时增加其优先数的值,等等。 -Computer Pra
  3. 所属分类:OS Develop

    • 发布日期:2017-03-30
    • 文件大小:982.13kb
    • 提供者:刘国佳
« 12 »
搜珍网 www.dssz.com