CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 队列FIFO的数据结构

搜索资源列表

  1. fifo

    0下载:
  2. 标准的先进先出队列数据结构,已经调试过的,可以直接应用到项目中-Standard FIFO queue data structure, has been testing, can be directly applied to projects
  3. 所属分类:OS Develop

    • 发布日期:2017-03-23
    • 文件大小:7156
    • 提供者:张胜朝
  1. ArrayQueue

    0下载:
  2. Java队列 队列是一种“FIFO”先进先出的数据结构.可以想象每年在火车站中买票的人群所组成的"队列"。 |队员1 队员2 队员3 队员3 队员4 队员5 队员6 队员7 队员8| ^ ^ 想象两个指针-Java Queue Queue is a " FIFO" First In First Out data structure. Imagine a year of people buy tickets at the station formed in a " q
  3. 所属分类:Jsp/Servlet

    • 发布日期:2017-03-27
    • 文件大小:1094
    • 提供者:aloof
  1. 5080309330_1

    0下载:
  2. 队列(Queue)是一种用于实现先进先出(FIFO)的数据结构,即第一个进入队列的数据排在队列的最前处,第二个进入队列的数据排在其后,依此类推;出队列时,总是排在队列最前处的那个数据先出队列。-Queue is used to implement FIFO (FIFO) data structure, that is, the first row of data into the queue in the queue at the most before the second row of da
  3. 所属分类:source in ebook

    • 发布日期:2017-04-16
    • 文件大小:9719
    • 提供者:huangguanchen
  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
    • 文件大小:452294
    • 提供者:nicai
  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
    • 文件大小:11774
    • 提供者:胡美美
  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
    • 文件大小:704
    • 提供者:马龙
  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
    • 文件大小:1116
    • 提供者:史玉隆
  1. Queue

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

    • 发布日期:2017-04-06
    • 文件大小:318240
    • 提供者:
  1. push

    0下载:
  2. 完整地描述了数据结构中的进栈过程:在堆栈中,用户只能在指定的一端插入和删除元素,因此具有后进先出(LIFO)的特性;在队列中,用户只能在一端插入元素而在另一端删除元素,因此呈现先进先出(FIFO)的特性。从数据结构角度看,它们都是线性结构。 -A complete descr iption of the data structure into the stack process: in the stack, users can insert and delete elements at on
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:554
    • 提供者:cindy
  1. Snake

    0下载:
  2. 贪吃蛇算法,稍微有点不同于网上的。网上的都是把蛇身的所有节点都储存了下来。 数据结构, 不复杂 给个保存蛇头蛇尾地址。还有保存方向的。然后用队列(先进先出表)保存拐点 -This algorithm is slightly different the Snake online. Internet is the snake all nodes are stored down. Data structure is not complex Save snakeheads to
  3. 所属分类:assembly language

    • 发布日期:2017-04-14
    • 文件大小:3924
    • 提供者:王建乐
  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
    • 文件大小:1322
    • 提供者:金彪
  1. 环形队列

    0下载:
  2. 环形队列是在实际编程极为有用的数据结构,它有如下特点。它是一个首尾相连的FIFO的数据结构,采用数组的线性空间,数据组织简单。能很快知道队列是否满为空。能以很快速度的来存取数据。 因为有简单高效的原因,甚至在硬件都实现了环形队列.环形队列广泛用于网络数据收发,和不同程序间数据交换(比如内核与应用程序大量交换数据,从硬件接收大量数据)均使用了环形队列.(The ring queue is a very useful data structure in practical programming,
  3. 所属分类:Windows编程

    • 发布日期:2017-12-31
    • 文件大小:293888
    • 提供者:James1994
  1. park

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

    • 发布日期:2018-01-09
    • 文件大小:186368
    • 提供者:calmdownfor
搜珍网 www.dssz.com