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

搜索资源列表

  1. duilie

    0下载:
  2. ⑴实现循环队列各种基本运算的算法 ⑵实现链队各种基本运算的算法-Realization of basic operations of circular queue;Realization of basic operations team chain algorithm
  3. 所属分类:assembly language

    • 发布日期:2017-03-28
    • 文件大小:6923
    • 提供者:安静霆
  1. gansidui

    0下载:
  2. 敢死队问题,数据结构的课程设计题目,用单循环链表,双循环链表,循环队列,数组四种方式实现,c++程序源码-Death squads problem, the data structure of course design topics, with a round robin list, double circular linked list, circular queue, four ways to achieve the array, c++ program source code
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:2436
    • 提供者:wangqiaoyan
  1. pic18f66j60_C_receiving

    0下载:
  2. 建立环状队列保存过去10个键盘状态,利用天然获得的时延,消键抖,防止连续动作,选择响应模式(下键或抬键动作)。还可以防止两键同按引起的误动作,这里主要靠键值识别,两键同下的键值与单键下键的值不同,拒绝之即可。-Create circular queue holds the state over the past 10 steps of the keyboard, using natural available delay, jitter elimination keys, to prevent
  3. 所属分类:SCM

    • 发布日期:2017-04-13
    • 文件大小:1951
    • 提供者:zhao
  1. circular_deque

    1下载:
  2. 找到一个作者的关于环形队列的源码,分享一下 boost 已经有了一个这样 的缓冲区,circular_buffer,由Jan Gaspar设计实现,它的数据结构跟传统的环形队列(很多数 据结构书上有相关介绍)一样,速度比传统的环形队列快得多。只不过我对它的表现还是不 太满意,觉得它还不够快。为此,我设计了一个简单的循环双端队列,它的数据结构与 circular_buffer 没什么两样,但没有编写迭代器,也没有给出太多公有成员函数,只不过它 的速度要快一些-To find
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:85697
    • 提供者:半半
  1. shunxuxunhuan

    0下载:
  2. 顺序循环队列基本操作 任意输入队列长度和队列中的元素值,构造一个队列,对其进行清空、插入新元素、返回队头元素以及删除队头元素操作。-Basic operation of the order of any circular queue length and queue input queue element values, construct a queue, its empty, insert a new element to the first team to return the fir
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:1174
    • 提供者:xiaolu
  1. AT89C52

    0下载:
  2. 环形队列在C51中的定义,初始化函数,队列的读写操作-Circular queue in the C51, as defined in the initialization function, the queue of read and write operations
  3. 所属分类:SCM

    • 发布日期:2017-04-02
    • 文件大小:14664
    • 提供者:冯云
  1. mfc_test1_udp_7_28

    0下载:
  2. C++(MFC)开发,实现语言的采集,压缩和局域网的互传。 搜索局域网内的所有主机,可连接选中主机进行通话。 语言聊天对误码率要求较低,而且对实时性要求较高,因此使用的传输协议为UDP,使用winsock完成对接。 接收端和发送端的buff使用循环队列以缓冲局域网较快的数据传输。 压缩算法使用window自带的压缩算法。 由于对话双方既是客户端也是服务端,因此使用多线程进行接收和发送数据。 向窗体注册winsock的消息,用于建立连接和发送接收数据时弹出消息。-C++ (MFC) develop
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-06-10
    • 文件大小:17708496
    • 提供者:liyongjian
  1. Circular_Queue_Implementation_using_Arrays

    0下载:
  2. Circular Queue Implementation using Arrays
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:900
    • 提供者:yehia atef
  1. Circlequeueinsert

    0下载:
  2. 实现循环队列的插入 输入-1则自动停止输入-Circular queue insert
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:8942
    • 提供者:Sisley95
  1. CQueue

    0下载:
  2. 设计一个使用队头指针和计数器无队尾指针的顺序循环队列,并编写一个主函数进行测试。 -Design a counter using the head of the queue pointer and tail pointer of the order of non-circular queue, and write a main function for testing.
  3. 所属分类:Data structs

    • 发布日期:2017-03-22
    • 文件大小:820
    • 提供者:merlin漫
  1. matching

    0下载:
  2. 利用循环队列模拟舞伴配对问题:在舞会上,男、女各自排成一队。舞会开始时。依次从男队和女队的队头各出一人配成舞伴。如果两队初始人数不等,则较长的那一队中未配对者等待下一轮舞曲。假设初始男、女人数及性别已经固定,舞会的轮数从键盘输入。-Simulation using circular queue partner matching problem: at the ball, male and female each queue. Party starts. Turn from the men'
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:3947
    • 提供者:tang
  1. xsxxgl

    0下载:
  2. (1)要模拟动态地显示出现题目中所要求的循环,我们要先建立两个循环队列。 (2)将数据分别存入这两个队列。以实现他们的循环配对输出,这是循环队列固有的特性。 (3)利用循环队列的特性,分别进行入队列和出队列操作,且实现搭配输出。 (4)循环队列的长度分别设为数据的个数即可。 -(1) to simulate the dynamic display required by the title appears cycle, we must first create two circu
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-04
    • 文件大小:1621
    • 提供者:李飞飞
  1. linkedlist

    0下载:
  2. Here is the program for whole linked list implemented circular queue,double linked list,stack etc
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:4130
    • 提供者:mohamed raoof
  1. fifo

    0下载:
  2. 一个循环线性地址先进先出队列(FIFO),非常适合用做通讯、任务等,具有如下特点: 1.循环队列,空间利用率非常高,不用动态分配内存,不使用链表,无内存泄漏,无内存碎片; 2.线性地址空间,直接使用memcpy进出,速度非常快; 使用说明: 1.fifo_init 2.fifo_into 2.fifo_get 3.fifo_remove 4.fifo_uninit 如发现问题联系本人: lxj_com@163.com QQ:67016879
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-30
    • 文件大小:17387
    • 提供者:long
  1. Lab5(1)

    0下载:
  2. 01.线性表的顺序存储及其运算02.线性表的链式存储及其运算03.栈的应用04.循环队列05.二叉树的顺序存储及其运算06.二叉树的链式存储及其运算(二叉排序树)07.顺序查找-01. Linear sequence of storage and computing table 02. Linear chain store and its operation table 03. Stack of applications 04. Circular queue 05. Binary storage
  3. 所属分类:Data structs

    • 发布日期:2017-06-11
    • 文件大小:18482550
    • 提供者:Luo
  1. cirque-n-d-que

    0下载:
  2. Circular queue and dq-Circular queue and dqueue
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:1845
    • 提供者:saurav
  1. gan-si-dui

    0下载:
  2. 使用菜单,单循环链表,循环队列,可选择数据结构,无限循环-Using the menu, round robin list, circular queue, choose the data structure, an infinite loop
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:28687
    • 提供者:smith
  1. stdafx

    0下载:
  2. 文件系统下的循环队列小程序,用于循环队列调试-File System applet under the circular queue, circular queue for debugging
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-31
    • 文件大小:2098
    • 提供者:liuyong
  1. 2011os_asn1

    0下载:
  2. c语言编写的多线程生产者消费者的程序,采用环形队列-c language multi-threaded program producers and consumers, using circular queue
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-08
    • 文件大小:1693
    • 提供者:sengyu
  1. stacks-and-queues

    0下载:
  2. 栈和队列的实现,包括共享栈、链栈、循环队列、链队列。-Implementation of stacks and queues, including the sharing of the stack, chain stack, circular queue, the queue chain.
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:103225
    • 提供者:Wendy
« 1 2 3 45 6 7 8 9 10 11 »
搜珍网 www.dssz.com