fcfs调度算法_FCFS:先来先服务调度算法

fcfs调度算法

The FCFS, which stands for First Come First Serve Scheduling Algorithm, is a non-preemptive scheduling algorithm, which means that if a process once starts executing in the processor, then it cannot be preempted in between the processing. Thus, the concept of priority and urgency is not implemented by this type of algorithm. In the FCFS algorithm, the process gets executed in the same sequence in which they enter the Ready state. It simply follows the strategy of "First come First serve with special services provided to none."

FCFS代表先来先服务调度算法 ,是一种非抢先调度算法,这意味着,如果某个进程一旦开始在处理器中执行,则无法在进程之间抢占该进程。 因此,这种算法无法实现优先级和紧急度的概念。 在FCFS算法中,进程以进入就绪状态的顺序执行。 它只是遵循“先到先得,不提供特殊服务”的策略

Now let us try to understand this further with the help of an example. Suppose there are four processes with process ID's P1, P2, P3, and P4 and they enter into the CPU as follows:

现在,让我们尝试借助示例进一步了解这一点。 假设有四个进程ID为P1P2P3P4 ,它们按如下方式进入CPU:

Process IDArrival Time
(milliseconds)
Burst Time
(milliseconds)
P105
P223
P362
P473
进程ID 到达时间
(毫秒)
爆发时间
(毫秒)
P1 0 5
P2 2 3
P3 6 2
P4 7 3

So, if the OS follows the FCFS algorithm for scheduling these processes, then they will be executed in the following manner:

因此,如果操作系统遵循FCFS算法来调度这些进程,则将以以下方式执行它们:

Gant Chart:

甘特图:

FCFS algorithm
FCFS algorithm
    Total Turn around Time = 5 + 6 + 4 + 6
= 21 milliseconds
Average Turn Around Time= Total Turn Around Time / Total No. of Processes
= 21 / 4
= 5.25 milliseconds
Total Waiting Time = 0 + 3 + 2 + 3
= 8 milliseconds
Average Waiting Time = Total Waiting Time / Total No. of Processes
= 8 / 4
= 2 milliseconds

翻译自: https://www.includehelp.com/operating-systems/fcfs-first-come-first-serve-scheduling-algorithm.aspx

fcfs调度算法

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/380165.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

亲和数

Problem Description 古希腊数学家毕达哥拉斯在自然数研究中发现,220的所有真约数(即不是自身的约数)之和为: 1245101120224455110=284。 1* 220220;2* 110220;4* 55220;5* 44220;10*20220;…

转:JNI jstring与c++字符串类型转换函数

jstring与c字符串类型转换函数 jstring str2jstring(JNIEnv* env,const char* pat) {//定义java String类 strClassjclass strClass (env)->FindClass("Ljava/lang/String;");//获取String(byte[],String)的构造器,用于将本地byte[]数组转换为一个新Stringjmetho…

python字符串转浮点数_如何在Python中检查字符串是否为数字(浮点数)?

python字符串转浮点数Using python it is very to interconvert the datatypes of a variable. A string can be easily converted to an integer or a float. However, asserting a string to be a float is a task by itself. Python provides an option to assert if a stri…

nhibernate学习之三级联(Ternary Associations)篇

1) 学习目标通过进一步学习Nhibernate基础知识,掌握用Nhiberate实现对级联的支持,通过一个简单的用户角色权限系统来体验nhibernate对级联的强大支持。2)开发环境和必要准备 开发环境为:windows 2003,Visual studio .Net 2005,Sql server 200…

【竞赛题解】Codeforces Round #715 (Div. 2) C

C. The Sports Festival 题意:对于给定的整型数组aaa,每次选择其中一个元素aia_iai​(不能重复选择同一元素),每次计算已选择的元素的极差(最大元素减最小元素的差),输出最后极差和…

C和汇编---sizeof运算符和strlen函数

sizeof sizeof是C语言的内置运算符&#xff0c;以字节为单位给出指定类型的大小。 程序&#xff1a; #include <stdio.h>int main(void) {int a8;int b sizeof(a);//printf("a占用字节%u\n",sizeof(a));printf("a占用字节%d\n",b);return 0; }反汇…

Java接口程序练习

题目&#xff1a; 编写一个接口程序&#xff0c;其中定义一个计算体积的方法。然后&#xff0c;在设计应用程序实现这个接口&#xff0c;分别计算矩形柱面体积和圆形柱面体积。 代码如下&#xff1a; import java.util.*;//导入扫描仪&#xff1b; public class clown {publi…

[原]Asp.net替换不同版本的Dll文件碰到的问题以及解决办法.

情景还原: 今天一个朋友说网站不能上传图片,我检查后发现一直卡住在上传页面,一直滚动,是个Fckeditor控件2.6.3的. 经过google以后得到的结论是图片上传成功,但是没有返回结果,在服务器上可以看到上传的图片. 说明是上传控件有问题,程序不能返回结果. 再google以后发现有人已经…

叠筐

Problem Description 需要的时候&#xff0c;就把一个个大小差一圈的筐叠上去&#xff0c;使得从上往下看时&#xff0c;边筐花色交错。这个工作现在要让计算机来完成&#xff0c;得看你的了。 Input 输入是一个个的三元组&#xff0c;分别是&#xff0c;外筐尺寸n&#xff…

“Visual Studio.net已检测到指定的Web服务器运行的不是Asp.net1.1版。您将无法运行Asp.net Web应用程序或服务”问题的解决方案...

解决方案一&#xff1a; 1.确定有安装.net framework 1.1&#xff0c;可以查看目录&#xff0c;c:\winnt\microsoft.net\framework重启IIS&#xff0c;重启计算机&#xff08;常规纠错方法&#xff09; 2.如果你的Web服务器使用了固定IP&#xff1a;确定你的“Internet信息服务…

【桶】220.存在重复元素 III 【LeetCode】

220.存在重复元素 III 【LeetCode】 给你一个整数数组 nums 和两个整数 k 和 t。请你判断是否存在 两个不同下标i和j&#xff0c;使得 abs(nums[i] - nums[j]) < t&#xff0c;同时又满足 abs(i - j) < k。 如果存在则返回 true&#xff0c;不存在返回 false。 示例 1…

远控免杀专题12--Green-Hat-Suite免杀

0x01 免杀能力一览表 几点说明&#xff1a; 1、上表中标识 √ 说明相应杀毒软件未检测出病毒&#xff0c;也就是代表了Bypass。 2、为了更好的对比效果&#xff0c;大部分测试payload均使用msf的windows/meterperter/reverse_tcp模块生成。 3、由于本机测试时只是安装了360全…

英语基础语法(八)-时态

英语中&#xff0c;动词时态的用法是尤其复杂和富于变化的。经常通过动词词尾、组动词等的变化表明动作发生时间的先后顺序&#xff0c;即时态。总的来说&#xff0c;英语中的动词时态分为 三个基本类型&#xff1a; 现在、过去和将来。动词时态的变化常常伴随着相应的表示时间…

Java PushbackInputStream markSupported()方法与示例

PushbackInputStream类markSupported()方法 (PushbackInputStream Class markSupported() method) markSupported() method is available in java.io package. markSupported()方法在java.io包中可用。 markSupported() method is used to check whether this stream supports …

面型对象 (接口与类的区别)

public class Demo4_Interface {public static void main(String[] args) {某女星 clown new 某女星();clown.潜规则();clown.关系();} }/*亲爹只有一个&#xff0c;是单继承;干爹可以有很多个&#xff0c;是多实现;*/ interface 某干爹{public void 关系();public void 潜规…

远控免杀专题 13----zirikatu免杀

0x01 免杀能力一览表 几点说明&#xff1a; 1、上表中标识 √ 说明相应杀毒软件未检测出病毒&#xff0c;也就是代表了Bypass。 2、为了更好的对比效果&#xff0c;大部分测试payload均使用msf的windows/meterperter/reverse_tcp模块生成。 3、由于本机测试时只是安装了360全…

UML 的九种模型图

1. UML的模型图 UML 的模型图能够将被建模的系统的某一个方面的某一部分以图形的方式表示出来&#xff0c;不同的视图通过将多个不同的模型图有机组合在一起就能够描述系统模型的某方面的特征。UML的模型图是有模型元素构成的&#xff0c;模型元素以图标的形式直观形象的表达…

【莫队】区间众数(Codeforces Round #716 (Div. 2) D)

D. Cut and Stick &#xff08;赛后补题&#xff09;借本题学习莫队算法以及区间众数的求法 题意&#xff1a;对于整型数组&#xff0c;每次询问[L,R][L,R][L,R]区间问最少分为多少个子序列&#xff0c;使得每个子序列的众数xxx的个数cntxcnt_xcntx​不大于 ⌈len2⌉\left \l…

如何正确使用SqlConnection

以前曾见过有人这样写代码&#xff1a; public class Service1 : IService1{private SqlConnection conn new SqlConnection();public void Method1(){//do something with conn;}public void Method2(){//do something with conn;}public void Method3(){//do something with…

关系代数基本运算_关系代数的基本和附加运算

关系代数基本运算Definition 定义 Every DBMS must define a query language to enable users to access the data which is stored in the database. Relational Algebra is a procedural query language. It is used to query the database tables in order to access data…