搜索资源列表
-
0下载:
在c++环境下实现队列的定义,简单详细的分析了队列的构成及其作用-At c++ environment the definition of the queue implementation, a detailed analysis of a simple composition of the cohort and its role
-
-
0下载:
Implementation of a queue using a Linklist.-Implementation of a queue using a Linklist.
-
-
0下载:
1、 建立一个结点,即 PCB 块包括用户标识域、状态域(执行、等待、就绪)、 link 域。
2、 建立三个队列(执行队列、就绪队列、等待队列)。
3、 根据进程状态转换实现对三个队列的具体操作。具体的驱动可以采用时间片算法或手动调度的形式完成三个状态之间的转换
-1, the establishment of a node, that is, including the user ID PCB block a domain, the state of the domain (
-
-
1下载:
数据结构实现:队列(环形数组、链式实现)的基类实现。-Data structure implementation: queue (circular array, chain to achieve) is the base class implementation.
-
-
0下载:
优先队列是0个或多个元素的集合,每个元素都有一个优先权或值,对优先队列执行的操作有1) 查找 2) 插入一个新元素 3) 删除.在最小优先队列(min priorityq u e u e)中,查找操作用来搜索优先权最小的元素,删除操作用来删除该元素 对于最大优先队列(max priority queue),查找操作用来搜索优先权最大的元素,删除操作用来删除该元素.优先权队列中的元素可以有相同的优先权,查找与删除操作可根据任意优先权进行. -Priority queue is 0 or mor
-
-
1下载:
合肥工业大学操作系统课程设计-实现进程多级队列调度算法的模拟(附课程设计报告)
建立作业的数据结构描述;
使用两种方式产生作业:(a)自动产生, (b)手工输入;
在屏幕上显示每个作业的执行情况;
时间的流逝可用下面几种方法模拟:(a)按键盘,每按一次可认为过一个时间单位; (b) 响应WM_TIMER;
计算并显示一批作业的周转时间、平均周转时间、带权周转时间、平均带权周转时间。
-
-
1下载:
合肥工业大学操作系统课程设计
进程/作业调度:多级反馈队列调度算法。
1建立作业的数据结构描述;
2使用两种方式产生作业:(a)自动产生, (b)手工输入;
3在屏幕上显示每个作业的执行情况;
4时间的流逝可用下面几种方法模拟:(a)按键盘,每按一次可认为过一个时间单位; (b) 响应WM_TIMER;
5计算并显示一批作业的周转时间、平均周转时间、带权周转时间、平均带权周转时间。
6将一批作业的执行情况存入磁盘文件,以后可以读出并重放;-Hefei Universi
-
-
0下载:
设计和实现一个银行排队机系统,该系统对银行当前能提供服务的窗口统一调度,使用MFC模拟调度及排队窗口。-Queue design and implementation of a banking system that can provide services to the bank window to the current unified control, scheduling and queuing simulation using the MFC window.
-
-
0下载:
C++ implementation of a queue structure
-
-
0下载:
PROGRAM OF IMPLEMENTATION OF A QUEUE USING LINKEDLIST
-
-
0下载:
用双头栈模拟队列,要求实现一个队列,提供Enqueue(&q, e)和Dequeue(&q, &e)两个接口
保证先进先出,用双头栈DStack实现(分A、B两个头),DStack只提供pushA(), popA(), pushB(), popB()等几个接口,不能访问任何位置i的元素,不能进行任意位置的插入、删除操作-Queue with a double stack simulation, called for a queue to provide Enqueue (& q, e) an
-
-
0下载:
本课程设计要求模拟实现一个的单道批处理系统的作业调度。通过具体的作业队列、作业调度算法等功能的实现,加深对单道批处理系统的作业调度实现过程的理解。-The course design requirements to achieve a single-channel analog batch job scheduling system. Through specific job queue, job scheduling functions such as implementation of th
-
-
0下载:
一、实验目的
(1)掌握进程状态转换过程
(2)掌握时间片轮转的进程调度算法;
(3)掌握带优先级的进程调度算法;
二、实验内容
(1)自定义PCB的数据结构;
(2)使用带优先级的时间片轮转法调度进程,每运行一个时间片,优先级减半。
(3)命令集
A)create 随机创建进程,进程的优先级与所需要的时间片随机决定;
B)round 执行1次时间片轮转操作,其方法为运行高优先级队列的第1个,再降低其优先级,插入到相应的队列中。
C)ps 查看当前进程状态
-
-
0下载:
c语言实现的队列,链式存储,包含有设计文档!在dev c++平台上已验证成功-The C language implementation of the queue, chain stores, including a design document! In dev c++ platform has been successfully validated
-
-
0下载:
常用的数据结构 数组 表 队列 图 树等相关数据结构的C语言实-C language implementation of a common data structure array table queue graph tree data structures
-
-
0下载:
1.实现队列的一种存储结构
2.实现队列的相关操作
3.利用队列的操作特点,借助进队与出队操作完成打印二项式系数的任务-1 a queue storage structure 2. Implementation-dependent operation queue 3. Using the operating characteristics of the queue, with the task into the team and the team finished pri
-
-
0下载:
Implementation of a Circular Queue in C
-
-
0下载:
An implementation of a priority queue with a fixed upper limit to its size
-
-
0下载:
An implementation of a priority queue backed by a Fibonacci heap.
-
-
0下载:
一个简单队列的实现,循环队列,包括进队列,出队列,队列初始化等功能-A simple implementation of a queue, circular queue, including into the queue, the queue, the queue initialization function
-