CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - queue fifo

搜索资源列表

  1. threadphilosopher

    0下载:
  2. 利用线程方案实现实现哲学家问题.设置五个信号量代表五把叉子,初使值均为1,表示5把叉子均可以取,设置五个线程代表5个哲学家,其值分别为0~4,规定奇数号的哲学家先拿起他左边的叉子,然后再去拿他右边的叉子 而偶数号的哲学家则相反.按此规定,将是1,2号哲学家竞争1号叉子,3,4号哲学家竞争3号叉子.即五个哲学家都竞争奇数号叉子,获得后,再去竞争偶数号叉子,最后总会有一个哲学家能获得两支叉子而进餐。而申请不到的哲学家进入阻塞等待队列,根FIFO原则,则先申请的哲学家会较先可以吃饭,因此不会出现饿死的
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:1.06kb
    • 提供者:林茜
  1. XQueue_demo

    0下载:
  2. 通过内存文件映象实现了一个FIFO消息队列,可以工作在所有的windows版本中-a FIFO message queue with memory map,compatible all windows version.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:110.44kb
    • 提供者:李文
  1. printSimulation

    0下载:
  2. 利用队列的先进先出模拟打印机的工作过程。显示不同时间到达的不同执行时间的任务,打印机的执行过程。-Use of the FIFO queue simulation of the working process of the printer. Show different time of the execution time of different tasks, the printer of the implementation process.
  3. 所属分类:Printing program

    • 发布日期:2017-04-03
    • 文件大小:1.98kb
    • 提供者:sunfuquan
  1. Queue

    0下载:
  2. 队列管理封装类,包括mutex锁, 先进先出的功能-Queue management package categories, including mutex locks, the function of FIFO
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-27
    • 文件大小:2.2kb
    • 提供者:sander
  1. FIFO

    0下载:
  2. 这个是对先进先出队列FIFO的理解,希望能帮到大家,-This is the understanding of FIFO FIFO queue and hope to help you
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:7.56kb
    • 提供者:whywhy
  1. process

    0下载:
  2. 为了更充分的利用CPU,必须管理好进程内及进程间的调度关系,此实验就是模拟进程之间的调度方法。在实验中,只模拟了3个状态之间的调度过程,为了便于观察调度过程,我采用手动操作方式(即根据操作者输入的命令来做相应的转换)。在程序中,为进程建议一个结构体,以这种类型建立一个数组,用了存储所有进程信息;同时建议了两个先进先出的对列(ready,blocked)用来存储当前就绪的进程和等待资源的进程(在程序中这两个队列只是存储了进程在存储进程的数组的下标,用下标来作为唯一标识且访问,但是不是pid)。对列
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-09
    • 文件大小:1.08mb
    • 提供者:white Snow
  1. PrinterSimulationFIFO

    0下载:
  2. 打印机实现,基于优先权队列的fifo,因此使用了优先权队列-Printers to achieve, based on the priority queue fifo, therefore the use of a priority queue
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:4.54kb
    • 提供者:mrchen
  1. snake

    0下载:
  2. In this homework, we will focus on data structures and you are responsible for their (correct) implementation. You will implement the queue data structure, which allows FIFO access. You will also implement the hashtable data structure, which implemen
  3. 所属分类:Communication

    • 发布日期:2017-04-02
    • 文件大小:36.1kb
    • 提供者:zjj
  1. softhy153I

    0下载:
  2. 这是CTransferSocket_hawk的类实现文件,以下成员变量用于数据发送:数据缓存区,为一个先入先出队列,注意:队列中的数据比原始数据多4+BEGIN_TAG_LENGTH个字节,其中前4个字节用来存放原始数据的长度,接下来存放BEGIN_TAG.远程端需要长度来确定将要接收的数据块尺寸,并利用BEGIN_TAG,来判断是否有错误发生。-This is CTransferSocket_hawk class implementation file, the following membe
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:967.25kb
    • 提供者:zs
  1. Queue

    0下载:
  2. 设计一个队列,是操作系统等各种软件最常用的数据结构,特点是先进先出,堆栈的结构一般都很简单-Design a queue, the operating system and other software, the most commonly used data structure, characterized by FIFO, the structure of the stack are generally simple
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:441.69kb
    • 提供者:nicai
  1. fifo

    0下载:
  2. 用FIFO方式进行简单的系统存储调用试验,利用队列的方法,编写了一个FIFO线程的交互程序-FIFO method with a simple call to test the system memory, using the queue method, the preparation of an interactive program FIFO thread
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-31
    • 文件大小:876byte
    • 提供者:m47
  1. queue

    0下载:
  2. 用双头栈模拟队列,要求实现一个队列,提供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
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-05
    • 文件大小:196.6kb
    • 提供者:wang
  1. fifo-queue

    0下载:
  2. The advantage of using a FIFO structure for a data flow problem is that we can decouple the source and sink processes. Without the FIFO we would have to produce 1 piece of data, then process it, produce another piece of data, then process it. With th
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-27
    • 文件大小:743byte
    • 提供者:Babar Ali
  1. SprintSimulati

    1下载:
  2. 利用队列的先进先出模拟打印机的工作过程。显示不同时间到达的不不同执行时间的任务,打印机的执行过程。,已通过测试。 -Using analog printer queue FIFO. During the execution of the task execution time at different times to reach the printer is displayed. , Has been tested.
  3. 所属分类:Windows Develop

    • 发布日期:2017-10-12
    • 文件大小:2kb
    • 提供者:jinnanlhy
  1. FIFO

    0下载:
  2. 通用FIFO,先进先出,队列满不覆盖数据,已经检测,没出现BUG。-Universal FIFO, first-in-first-out queue full coverage data has been detected, and no-show BUG.
  3. 所属分类:CSharp

    • 发布日期:2017-12-10
    • 文件大小:1.07kb
    • 提供者:欧阳华宇
  1. FIFO

    0下载:
  2. 进程的管理 1、设计一个进程PCB的数据结构 2、设计三种进程基本状态的队列 3、创建进程,并将其送入某状态队列 4、实现进程之间状态的转换,进程转换到不同队列-Management of a process, the process of designing a data structure 2 PCB design three kinds of basic state process queue 3, the creating process, and sends it to
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-22
    • 文件大小:1.09kb
    • 提供者:史玉隆
  1. Queue

    0下载:
  2. 数据结构中的队列,可以实现先进先出的的功能-A queue data structure, the function can be realized FIFO
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-06
    • 文件大小:310.78kb
    • 提供者:
  1. queue

    0下载:
  2. 队列的基本程序代码,比如入队,出队,取队头,此代码用链表的方式采用的FIFO(first in first out),新元素(等待进入队列的元素)总是被插入到链表的尾部,而读取的时候总是从链表的头部开始读取。每次读取一个元素,释放一个元素。所谓的动态创建,动态释放。因而也不存在溢出等问题。由于链表由结构体间接而成,遍历也方便。-The basic code of the queue, for example into the team, the team, the first team to t
  3. 所属分类:CSharp

    • 发布日期:2017-05-01
    • 文件大小:172.56kb
    • 提供者:陈泉秀
  1. park

    0下载:
  2. 解决停车问题, fifo队列的构建,排队问题(Solve the problem of parking, construction of FIFO queue and queuing problem)
  3. 所属分类:其他

    • 发布日期:2018-01-09
    • 文件大小:182kb
    • 提供者:calmdownfor
  1. FIFO先进先出调度算法(含代码截图)

    1下载:
  2. 最简单的分页替换算法就是先进先出算法,当每次有新的分页需要调入时,会选择调入内存时间最久的分页换出。有两种实现的方法:第一种是记录每个分页被调入到页框的时间,当每次需要换出分页时,会找到调入时间最早的一页,也就是在主存储器中存在最久的分页。另外一种方式就是利用FIFO队列来实现,当要进行分页替换时,就把队列最前端的分页换出,再把要调入的分页放到队列的末端。(The simplest paging replacement algorithm is the first in first out al
  3. 所属分类:Windows编程

    • 发布日期:2021-01-08
    • 文件大小:1023kb
    • 提供者:91z先生
« 12 »
搜珍网 www.dssz.com