CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - queue fifo

搜索资源列表

  1. MYMM1

    7下载:
  2. M/M/1单服务台排队系统仿真(用事件调度法实现离散事件系统仿真) 顾客到达模到达时间间隔和顾客服务时间均服从负指数分布,单服务台系统,按照单队排队,按FIFO方式服务。考察服务n个顾客(n=1000,2000,3000,5000)后的顾客平均队长及平均排队等待时间。-M/M/1 single-server queuing system simulation (using Event Scheduling Method Discrete Event Simulation System) t
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:1.46kb
    • 提供者:麦麦
  1. DS2

    0下载:
  2. 使用STL queue adapter,实现队列先入先出。通过.run文件中的内容,实现相应的输出。-Using the STL queue adapter, to achieve queue FIFO. Through. Run the contents of the document to achieve a corresponding output.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1.38mb
    • 提供者:lavender
  1. chexiang

    0下载:
  2. 利用队列结构实现车厢重排问题。车厢重排问题如下: 一列货车共有n节车厢,每个车厢都有自己的编号,编号范围从1~n。给定任意次序的车厢,通过转轨站将车厢编号按顺序重新排成1~n。转轨站共有k个缓冲轨,缓冲轨位于入轨和出轨之间。开始时,车厢从入轨进入缓冲轨,经过缓冲轨的重排后,按1~n的顺序进入出轨。缓冲轨按照先进先出方式,编写一个算法,将任意次序的车厢进行重排,输出每个缓冲轨中的车厢编号。 -Using queue structures to achieve car Rearrangeme
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:875.28kb
    • 提供者:莫凡
  1. main

    0下载:
  2. 通过栈和队列,求算术表达式的值,能够更深入的理解栈的先进后出和队列的先进先出-Through the stack and queue, find the value of arithmetic expressions, to more advanced understanding of the stack and queue in the FIFO after the
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:1.13kb
    • 提供者:子童
  1. Arrayqueue

    0下载:
  2. 利用数组建立队列来实现先进先出的功能利用数组建立队列来实现先进先出的功能-use array to make a queue. to make true the funciton of FIFO
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:4.79kb
    • 提供者:初学者
  1. abc

    0下载:
  2. 页面置换算法 最早调入内存的页,其不再被使用的可能性比刚调入内存的可能性大。建立一个FIFO队列,收容所有在内存中的页。被置换页面总是在队列头上进行。当一个页面被放入内存时,就把它插在队尾上。-Page replacement algorithm Transferred to the memory of the first page, the possibility of no longer being used into memory than just the possibility
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-13
    • 文件大小:1.72kb
    • 提供者:gengchn
  1. linkqueue

    0下载:
  2. 利用队列结构实现车厢重排问题。车厢重排问题如下: 一列货车共有n节车厢,每个车厢都有自己的编号,编号范围从1~n。给定任意次序的车厢,通过转轨站将车厢编号按顺序重新排成1~n。转轨站共有k个缓冲轨,缓冲轨位于入轨和出轨之间。开始时,车厢从入轨进入缓冲轨,经过缓冲轨的重排后,按1~n的顺序进入出轨。缓冲轨按照先进先出方式,编写一个算法,将任意次序的车厢进行重排,输出每个缓冲轨中的车厢编号。 -Compartments use the queue structure to achieve
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:995.53kb
    • 提供者:ziying
  1. knapsack(five)

    0下载:
  2. 实现0-1背包问题的优先队列分支限界算法 FIFO 分支限界算法 递归法 回溯法 动态规划算法-0-1 knapsack problem to achieve the priority queue FIFO branch and bound algorithms branch and bound backtracking algorithm recursion dynamic programming algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:13.8kb
    • 提供者:iwillgoon
  1. duilie

    0下载:
  2. 队列,又称为伫列(英文queue),是先进先出(FIFO, First-In-First-Out)的线性表。在具体应用中通常用链表或者数组来实现。队列只允许在后端(称为rear)进行插入操作,在前端(称为front)进行删除操作。-Queue, also known as queue (English queue), is the first in first out (FIFO, First-In-First-Out) linear form. In specific applications
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-07
    • 文件大小:24.34kb
    • 提供者:韩云飞
  1. QUEUE_FIFO

    0下载:
  2. 队列(Queue)是一种用于实现先进先出(FIFO)的数据结构,即第一个进入队列的数据排在队列的最前处,第二个进入队列的数据排在其后,依此类推;出队列时,总是排在队列最前处的那个数据先出队列。所以,先进队列的数据一定比后进队列的数据先出队列,这也就是所谓的先进先出。有多种方式可以用于队列的实现:可以用数组的形式实现顺序队列,也可以用链表的形式实现链式队列。-Queue (Queue) is a kind of used to implement the FIFO (FIFO) data stru
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:11.5kb
    • 提供者:胡美美
  1. a2

    0下载:
  2. Implementation a simple FIFO queue using arrays. Write a programs that will ask the user for the size of the queue. Then it will start reading characters from the keyboard and store them in the queue. If the user enters an empty line then the progr
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:728byte
    • 提供者:yeah
  1. a3

    0下载:
  2. Implementation a simple FIFO queue using linked lists. Write a programs that will ask the user for the size of the queue. Then it will start reading characters from the keyboard and store them in the queue. If the user enters an empty line then the
  3. 所属分类:Algorithm

    • 发布日期:2017-04-08
    • 文件大小:866byte
    • 提供者:yeah
  1. FIFO

    0下载:
  2. 队列是一个先进先出的数据结构,支持业务enque(添加一个项目的结构)和dequeue(删除一个项目从结构)。作为一个FIFO数据结构,项目将在相同的顺序,他们原本排队出列。-A queue is a FIFO data structure that supports the operations enque (to add an item to the structure) and dequeue (to remove an item from the structure). As a FIF
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:704byte
    • 提供者:马龙
  1. Stack-and-Queue-FIFO

    0下载:
  2. Queue是先进先出的集合而Stack是后进先出的集合-Queue is a collection of FIFO Stack is a LIFO collection
  3. 所属分类:Data structs

    • 发布日期:2017-03-24
    • 文件大小:4.51kb
    • 提供者:hlh
  1. Stack--FIFO

    0下载:
  2. Queue是先进先出的集合而Stack是后进先出的集合-Queue is a collection of FIFO Stack is a LIFO collection
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:4.5kb
    • 提供者:hlh
  1. test_QUEUE

    0下载:
  2. 队列-(FIFO)的实现一种示例,包括接口文件及其实现文件,测试文件等。在CFree下验证成功,包括CFree工程文件-Queue- (FIFO) to achieve one example, includes interface files and implementation files, test files. Verification is successful in CFree, including CFree project file
  3. 所属分类:Data structs

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

    0下载:
  2. 进程调度模拟程序:假设有10个进程需要在CPU上执行,分别用:  先进先出调度算法;  基于优先级的调度算法;  最短执行时间调度算法 确定这10个进程在CPU上的执行过程。要求每次进程调度时在屏幕上显示:  当前执行进程;  就绪队列;  等待队列 -Process scheduling simulation program: Suppose there are 10
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-08
    • 文件大小:2.53kb
    • 提供者:鸣海夜一
  1. C

    0下载:
  2. C语言队列问题,详细的实现了队列的先进先出的功能,并且还有录入文件的功能,删除文件内容的功能,通过单链表可以实现文件的录入,删除,查找,浏览,修改等功能.-C language queue problem, detailed implements the functionality of the fifo queue, and the function of the input file, delete the file content function, through singly link
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:830byte
    • 提供者:wesai
  1. queen_list

    0下载:
  2. 近期学习数据结构,学习了队列的思想,队列的存储主要是先进先出的原则,程序实现了队列的创建,以及出队和入队的一些常用算法。-Recent study data structure, study the idea of the queue, the queue memory is mainly the FIFO principle, the program enables the creation of queues, and some commonly used algorithms and th
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1.29kb
    • 提供者:金彪
  1. sim_lift

    0下载:
  2. this simulation of lift queue first in first out FIFO
  3. 所属分类:matlab例程

    • 发布日期:2018-01-05
    • 文件大小:20kb
    • 提供者:wawa123
搜珍网 www.dssz.com