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

搜索资源列表

  1. 01

    0下载:
  2. 模拟实现时间片轮转调度算法,具体如下: 设置进程体:进程名,进程的到达时间,服务时间,,进程状态(W——等待,R——运行,F——完成),进程间的链接指针 进程初始化:由用户输入进程名、服务时间进行初始化,同时,初始化进程的状态为W。 显示函数:在进程调度前、调度中和调度后进行显示。 排序函数:对就绪状态的进程按照进入就绪队列的时间排序,新到达的进行应优先于刚刚执行过的进程进入就绪队列的队尾。注意考虑到达时间 调度函数:每次从就绪队列队首调度优一个进程执行,状态变化。并在执行一
  3. 所属分类:CSharp

    • 发布日期:2017-05-03
    • 文件大小:959756
    • 提供者:李大娘
  1. OS

    0下载:
  2. 操作系统进程调度模拟实现算法,先到先服务调度(FCFS) 最短作业优先调度(SJF) 高响应比优先调度 (抢占式)优先权调度 时间片轮转调度-Operating system process scheduling simulation algorithm, first come first served scheduling (FCFS) Shortest job first scheduling (SJF) High priority response ratio sc
  3. 所属分类:OS Develop

    • 发布日期:2017-05-07
    • 文件大小:1092443
    • 提供者:庞清成
  1. main

    0下载:
  2. 通过用高级语言编写模拟进程调度程序,了解有关进程控制块、进程队列的概念,体会掌握了优先数算法和时间片轮转算法的具体实施办法,提高对进程调度的认识。2. (1)优先数调度算法程序 (2)循环轮转调度算法程序-By writing simulation process scheduler with high-level language, learn about the process control block, the concept of process queue priority numb
  3. 所属分类:OS Develop

    • 发布日期:2017-04-12
    • 文件大小:1423
    • 提供者:白新宇
  1. RoundRobin

    0下载:
  2. CPU Scheduling Round Robin
  3. 所属分类:Java Develop

    • 发布日期:2017-05-04
    • 文件大小:29414
    • 提供者:Ahmed
  1. MQ-ECN-NS2-master

    0下载:
  2. this file is very important for weigted round robin algorithim
  3. 所属分类:Linux Network

    • 发布日期:2017-05-05
    • 文件大小:36155
    • 提供者:zeleke
  1. RROBIN

    0下载:
  2. round robin algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:848
    • 提供者:ranger
  1. jincheng

    0下载:
  2. 进程及其管理 进程调度算法模拟,用动态优先数及时间片轮转法实现进程调度-Process management and process scheduling algorithm simulation to achieve a dynamic process scheduling priority and the number of round-robin method
  3. 所属分类:OS Develop

    • 发布日期:2017-05-04
    • 文件大小:5214
    • 提供者:浅蓝
  1. rr

    0下载:
  2. round robin scheduling algorithm
  3. 所属分类:matlab

    • 发布日期:2017-04-12
    • 文件大小:795
    • 提供者:frh
  1. os

    0下载:
  2. 操作系统实验代码 一:编写并调试一个模拟的进程调度程序,采用“最高优先数优先”调度算法对五个进程进行调度。 二:编写并调试一个模拟的进程调度程序,采用“简单轮转法”调度算法对五个进程进行调度。 编写和调试一个系统动态分配资源的简单模拟程序,观察死锁产生的条件,并采用银行家算法,有效地防止和避免死锁的发生。-OS experiment code one: write a simulation and debugging process scheduling procedures, &quo
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:2743
    • 提供者:hml
  1. OSM

    0下载:
  2. Scheduling Algorithm: First Come First Served (FCFS). Shortest Job First (SJF). Round Robin (RR). Priority Scheduling. with C and C++ -Scheduling Algorithm: First Come First Served (FCFS). Shortest Job First (SJF). Round Robin (RR).
  3. 所属分类:Algorithm

    • 发布日期:2017-04-14
    • 文件大小:3568
    • 提供者:oussama
  1. RoundRobinDatacenterBroker.java.tar

    0下载:
  2. Round-robin load balancing is one of the simplest methods for distributing client requests across a group of servers. Going down the list of servers in the group, the round-robin load balancer forwards a client request to each server in turn. When it
  3. 所属分类:Communication

    • 发布日期:2017-04-12
    • 文件大小:740
    • 提供者:N Mounika
  1. RoundRobin

    0下载:
  2. dynamic round robin algorithm in java
  3. 所属分类:Development Research

    • 发布日期:2017-05-04
    • 文件大小:23979
    • 提供者:pouria
  1. Operating-system-experiment

    0下载:
  2. 实验一:进程调度算法模拟,用动态优先数及时间片轮转法实现进程调度 实验三:文件管理-Process and management Simulation of the process scheduling algorithm, round robin algorithm to achieve the process of scheduling with dynamic priority number and the time
  3. 所属分类:Other systems

    • 发布日期:2017-05-07
    • 文件大小:1049613
    • 提供者:小雷
  1. LAB3

    0下载:
  2. Multi-level queue 196 scheduling algorithm is used in scenarios where the processes can be classified into groups based on property like process type, CPU time, IO access, memory size, etc. One general classification of the processes is foreground pr
  3. 所属分类:File Operate

    • 发布日期:2017-12-15
    • 文件大小:11264
    • 提供者:lay
  1. main

    0下载:
  2. 编制两种进程调度算法:优先度调度,循环轮转调度-Two process scheduling algorithms are proposed: priority scheduling, round robin scheduling
  3. 所属分类:OS Develop

    • 发布日期:2017-12-15
    • 文件大小:2048
    • 提供者:阿爽
  1. BowingSystem7

    0下载:
  2. 保龄球循环赛系统,带图形化界面。实现积分、排名等功能(Bowling round robin system with graphical interface. Achieve integration, ranking and other functions)
  3. 所属分类:Java编程

    • 发布日期:2017-12-25
    • 文件大小:187392
    • 提供者:观摩
  1. Table

    0下载:
  2. 说明:例如网球比赛,有N名运动员参加比赛。设计的比赛日程表要能够满足下列要求: (1)每个选手必须与其他N-1个选手各赛一次; (2)每个选手一天只能参赛一次; (3)循环赛在N-1天内结束。 输入运动员的名字,程序输出比赛日程表。(Explanation: for example, there are N players competing in a tennis match. The design schedule should be able to meet the followi
  3. 所属分类:其他

    • 发布日期:2017-12-24
    • 文件大小:1024
    • 提供者:白茶未晚
  1. Lab-Exercise-5

    0下载:
  2. . You have the results of a completed round-robin tournament in which n teams played each other once. Each game ended either with a victory for one of the teams or with a tie. Design an algorithm that lists the teams in a sequence so that every team
  3. 所属分类:C#编程

    • 发布日期:2017-12-31
    • 文件大小:30720
    • 提供者:Chast
  1. grammar

    0下载:
  2. 第1章 算法引论   1.1 算法与程序   1.2 表达算法的抽象机制   1.3 描述算法   1.4 算法复杂性分析   小结   习题   第2章 递归与分治策略   2.1 速归的概念   2.2 分治法的基本思想   2.3 二分搜索技术   2.4 大整数的乘法   2.5 Strassen矩阵乘法   2.6 棋盘覆盖   2.7 合并排序   2.8 快速排序   2.9 线性时间选
  3. 所属分类:其他

    • 发布日期:2018-01-02
    • 文件大小:2375680
    • 提供者:Summer-LXN
  1. src

    0下载:
  2. ① 设计进程控制块PCB表结构,分别适用于优先数调度算法和循环轮转调度算法。 ②建立进程就绪队列。对两种不同算法编制入队子程序。 ③编制两种进程调度算法:1)优先数调度;2)循环轮转调度(First, the design process control block PCB table structure, respectively suitable for priority number scheduling algorithm and cycle round robin scheduling
  3. 所属分类:其他

    • 发布日期:2018-01-03
    • 文件大小:11264
    • 提供者:cvxvdbv
« 1 2 ... 16 17 18 19 20 2122 »
搜珍网 www.dssz.com