代码搜索:FCFS

找到约 69 项符合「FCFS」的源代码

代码结果 69
www.eeworm.com/read/390576/8458913

cpp fcfs.cpp

/* 程序采用<mark>FCFS</mark>算法模拟作业运行,程序运行时先输入作业个数,并依次输入作业信息, 输入过程中作业信息构成一个全局链表,表头为head,表尾last,每次新来的作业插在表尾; 运行时,每次取表头节点投入运行,head指针往后移动一位直至表为空,每次运行将各作业 的状态显示出来,显示有正在运行的作业及在等待链表里的作业,每个作业运行结束后,将 全局跟踪CPU时刻变量加上刚运行完作业的运 ...
www.eeworm.com/read/280091/10354880

c fcfs.c

#include "conio.h" #include "stdlib.h" #include "stdio.h" #define getPCB(type) (type*)malloc(sizeof(type)) #define NULL 0 /*void running(PCB *p,int m)*/ int n=0,time=0;float eti,ewi; struct
www.eeworm.com/read/456129/7357235

cpp fcfs.cpp

# if !defined(__PCB_H) #include "CPU\PCB.h" # endif # if !defined(__KERNEL_H) #include "CPU\Kernel.h" # endif # if !defined(__READYQUEUE_H) #include "CPU\ReadyQ~1.h" # endif # if !de
www.eeworm.com/read/440219/7691859

cpp fcfs.cpp

#include #include void main() { clrscr(); int bt[10]; int i=0,j,k; float avg; int sum=0; char choice; cout
www.eeworm.com/read/243648/12930022

m fcfs.m

function [newp,QReady]=FCFS(QReady,Qlen) [QReady,newp]=OutQueue2(QReady,Qlen,0);
www.eeworm.com/read/326520/13136730

doc fcfs.doc

www.eeworm.com/read/492300/6420851

cpp fcfs.cpp

#include #include #include typedef struct { int tracknum,current; int *currents; }TRACK; int main(int argc,char*argv[]) { FILE*file; int i,a; TRACK tra
www.eeworm.com/read/492300/6420853

exe fcfs.exe

www.eeworm.com/read/483804/6595806

txt fcfs.txt

#include void main() { int a[100],t; int b[100]; int f=0; int s=0; int x=0; int y=0; int k=0; int n; coutn; for(int i=0;i
www.eeworm.com/read/404254/11489579

rar fcfs算法.rar