搜索资源列表
进程调度模拟实验
- 设计一个有 N个进程共行的进程调度程序。 进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法。 每个进程有一个进程控制块(PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。进程的优先数及需要的运行时间可以事先人为地指定(也可以由随机数产生)。进程的到达时间为进程输入的时间。进程的运行时间以时间片为单位进行计算。每个进程的状态可以是就绪 W(Wait)、运行R(Run)、或完成F(Finis
1234
- 简单计算器的界面代码,以及实现相关功能,加减乘除清零等-Simple calculator interface code, as well as the relevant functions
coaaialshrking
- 矩阵运算加减点乘点除,脚本解析(不含语法检查),纯c程序练手而已-Matrix operations and subtract point by point, scr ipt analysis (excluding syntax check), pure c program a try
volatime
- 自己用C#写的程序,里面包含各种算法,如:加减乘除,平方开方-Their programs written in c#, containing a variety of algorithms, such as subtracting, square root
ppkgress-console-search
- 加减乘除运算的东西,,不错!!汇编写的,可以的不错-You can multiply, add, subtract and divide things,, good!!!!!
vivusxonmultiplication
- 介绍矩阵的一些应用,可以用于 一些矩阵的加减乘除的运算等(Introduces some applications of the matrix, which can be used in some of the matrix of addition, subtraction, multiplication, and division operation, etc)
operatnsn-current
- 一个用Csharp语言自行编写的计算器,可以进行加减乘除运算,并保存当前值,,(A calculator written in Csharp language on their own, can operation for addition, subtraction, multiplication, and division, and maintain the current value,,)
tvhhqve
- 矩阵的加减乘的程序,有用整型数据存储和用十字链表两中形式实现,(Add and subtract by the application of matrix, integer data storage and in the form of a curb in table 2,)
0718821
- 矩阵运算加减点乘点除,脚本解析(不含语法检查),纯c程序练手而已(Matrix operations and subtract point by point, scr ipt analysis (excluding syntax check), pure c program a try)
89396904
- 问题描述:加减乘运算器, 要 求: 输入方式:使用给定文件进行输入()
4508584
- 简单的计算器,能做加减乘除开方等,实用,不错()
操作系统进程调度实验报告
- 就绪进程获得 CPU 后都只能运行一个时间片。用已占用 CPU 时间加 1来表 示。 如果运行一个时间片后, 进程的已占用 CPU 时间已达到所需要的运行时间, 则撤消该进程,如果运行一个时间片后进程的已占用 CPU 时间还未达所需要的 运行时间,也就是进程还需要继续运行,此时应将进程的优先数减 1(即降低一级) ,然后把它插入就绪队列等待 CPU 。 每进行一次调度程序都打印一次运行进程、就绪队列、以及各个进程的 PCB ,以便进行检查。 重复以上过程,直到所要进程都完成为止。