CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 轮转法

搜索资源列表

  1. Cpp1

    0下载:
  2. 进程调度 算法 动态优先权法 和时间片轮转法-failed to translate
  3. 所属分类:OS Develop

    • 发布日期:2017-04-14
    • 文件大小:2728
    • 提供者:
  1. Dispatch

    0下载:
  2. 模拟进程调度算法,包括先来先服务法,多级反馈法,时间片轮转法,静态优先级法和动态优先级法。-Simulation process scheduling algorithms, including a first-come first-served method, multi-level feedback method, round-robin method, static priority method and the dynamic priority method.
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-14
    • 文件大小:3907
    • 提供者:wangbin
  1. diaodu

    0下载:
  2. 时间轮转法,进程调度.某工业大学实验要求。分享-Time rotation method, process scheduling
  3. 所属分类:OS Develop

    • 发布日期:2017-04-10
    • 文件大小:1161
    • 提供者:
  1. process

    0下载:
  2. 该程序实现单处理系统的进程调度模拟,进程最多个数5个,采用时间片轮转法-The program implementation process of scheduling a single processing system simulation, process the maximum number of five, with round-robin method
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:3562
    • 提供者:zch
  1. OS_1

    0下载:
  2. 处理机调度算法,模拟处理机对进程的调度算法,采用时间片轮转法-Processor scheduling algorithm, the simulated processor to process scheduling algorithm, using the rotation law of the time slice
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-02
    • 文件大小:26220
    • 提供者:陈浩
  1. dddddd

    0下载:
  2. 处理机调度,基于优先级时间片轮转法德C语言代码-Priority based scheduling algorithm of the C language source processor scheduling algorithm
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-10
    • 文件大小:1316
    • 提供者:吕佩佩
  1. Test

    0下载:
  2. 一、实验目的 (1)掌握进程状态转换过程 (2)掌握时间片轮转的进程调度算法; (3)掌握带优先级的进程调度算法; 二、实验内容 (1)自定义PCB的数据结构; (2)使用带优先级的时间片轮转法调度进程,每运行一个时间片,优先级减半。 (3)命令集 A)create 随机创建进程,进程的优先级与所需要的时间片随机决定; B)round 执行1次时间片轮转操作,其方法为运行高优先级队列的第1个,再降低其优先级,插入到相应的队列中。 C)ps 查看当前进程状态
  3. 所属分类:SCM

    • 发布日期:2017-04-01
    • 文件大小:17240
    • 提供者:mengmeng
  1. RRw

    0下载:
  2. 实现了用时间片轮转法调度虚拟进程。-Round-Robin scheduling virtual process time slice.
  3. 所属分类:Process-Thread

    • 发布日期:2016-01-25
    • 文件大小:517120
    • 提供者:Dwxiao
  1. OS-Experiment(1)LunZhuanFa

    0下载:
  2. 操作系统实验一《轮转法模拟进程调度》,内含源代码、可执行程序-Operating system experiments a " rotation method for modeling the process scheduling
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:240478
    • 提供者:morning
  1. shijianpianlunzhuan

    0下载:
  2. 模拟操作系统中CPU如何调度外部进程的算法——时间片轮转法-The algorithm simulated operating system how the CPU scheduling external process- round-robin method
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:250384
    • 提供者:陈慧
  1. sjpl

    0下载:
  2. 这是应用于操作系统进程调试的一种时间片轮转法。-This is used in the process of debugging the operating system time slice of a rotation method.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-03
    • 文件大小:3545
    • 提供者:天蓝夜
  1. time

    1下载:
  2. 处理机调度是操作系统中非常重要的部分。为深入理解进程管理部分的功能,设计时间片轮转法进行CPU调度算法,模拟实现处理机的调度。通过本次课程设计理解进程调度的概念,深入理解进程控制的功能、进程的创建与删除以及进程各个状态之间的转换过程,实现时间片轮转算法调度进程。-PROCESSING scheduling is a very important part of the operating system. For an in-depth understanding of the function
  3. 所属分类:OS Develop

    • 发布日期:2017-11-12
    • 文件大小:1691
    • 提供者:syn
  1. jcdd

    0下载:
  2. 操作系统调度算法 优先权和时间片轮转法-Operating system scheduling algorithm priority and round-robin method
  3. 所属分类:Linux Network

    • 发布日期:2017-12-07
    • 文件大小:1681
    • 提供者:gladiola
  1. 22.01

    0下载:
  2. 编写并调试一个模拟的进程调度程序,采用“轮转法”调度算法对五个进程进行调度。   轮转法可以是简单轮转法、可变时间片轮转法,或多队列轮转法。   简单轮转法的基本思想是:所有就绪进程按 FCFS排成一个队列,总是把处理机分配给队首的进程,各进程占用CPU的时间片相同。如果运行进程用完它的时间片后还为完成,就把它送回到就绪队列的末尾,把处理机重新分配给队首的进程,直至所有的进程运行完毕。-Write and debug a simulation of the process schedul
  3. 所属分类:Document

    • 发布日期:2017-12-09
    • 文件大小:419243
    • 提供者:楚相水
  1. OS_Experiment_1_release

    0下载:
  2. 我们的操作系统的一个实验而已。传上来,看有不有人需要。用动态排序模拟的多级反馈轮转法! 因为是操作系统实验,所以程序中有本人和同学学号,名字,可以自行删去!-Our operating system only one experiment. Pass up, to see if there is not someone. Sort using dynamic simulation of multi-level feedback rotation law! Experimental op
  3. 所属分类:Button control

    • 发布日期:2017-11-23
    • 文件大小:4399688
    • 提供者:chenlei
  1. OS1

    0下载:
  2. 简单轮转法、广工操作系统实验、实验简单轮转法、-A simple method of rotary、Guanggong Operating system experiment
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-07
    • 文件大小:1249
    • 提供者:小双
  1. process

    0下载:
  2. 该程序是通过mfc图形化界面演示了进程调度的过程,可以选择FCFS,最高优先级和时间片轮转法来展示进程调度。-The program is through the mfc graphical interface demo process scheduling process, you can choose the FCFS process scheduling highest priority and round-robin method to show.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-25
    • 文件大小:2398313
    • 提供者:罗赟
  1. round-robin

    0下载:
  2. 时间片轮转法cpu调度,java学习中的运用-Round robin cpu scheduling time slice, the use of java learning
  3. 所属分类:JavaScript

    • 发布日期:2017-11-17
    • 文件大小:35231
    • 提供者:魏大超
  1. shijianpianlunzhuanfa

    0下载:
  2. 这是操作系统时间片轮转法的课程设计,还有关优先级数的算法描述-This is the operating system curriculum design of the round-robin method on priority Series algorithm descr iption
  3. 所属分类:Linux Network

    • 发布日期:2017-11-23
    • 文件大小:93266
    • 提供者:xumeiya
  1. shijian

    0下载:
  2. 在操作系统中,用时间片轮转法来进行模拟作业调度-In the operating system, with a round-robin method to simulate job scheduling
  3. 所属分类:Process-Thread

    • 发布日期:2016-01-22
    • 文件大小:1024
    • 提供者:青崖
« 1 2 3 4 5 6 78 9 »
搜珍网 www.dssz.com