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

搜索资源列表

  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. LogicSoundCard

    0下载:
  2. 一个用C#写的语音录播库。调用了DirectX,DirectSound。 麦克录音类通过事件把数据送出,语音播入类通过向其内部的一个循环队列中添加数据来自动播放。 其它的类分别是读写wav格式文件的类和播入wav格式文件的类。-Using C# to write a voice recording and broadcasting libraries. Called DirectX, DirectSound. Mike recording the data sent by event t
  3. 所属分类:DirextX

    • 发布日期:2017-03-29
    • 文件大小:73535
    • 提供者:北风
  1. DataStructure

    0下载:
  2. 常用数据结构合集,包括单链表,双向链表,递归,堆,二叉树,循环链表,循环队列等,全部用模板实现-The Complication of Data Structure
  3. 所属分类:Data structs

    • 发布日期:2017-05-16
    • 文件大小:4139726
    • 提供者:陈坚
  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. 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. 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. Circular-queue

    1下载:
  2. 数据结构 循环队列 用C语言实现,在VC6.0下实现-Circular queue data structure using C language, to achieve in the VC6.0
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:2198
    • 提供者:liupeiran
  1. SnakeGo

    0下载:
  2. 又一个贪吃蛇i游戏的源码,虽然每一款贪吃蛇的玩法都相同,但是编程的算法却不同,本贪吃蛇有要是应用到VC++的循环队列和简单链表原理实现的,用键盘上的W/A/S/D键分别控制蛇身移动,越接越长,在游戏开始前,蛇身、食物数量可以自己设置,提醒一下,这个游戏需要你的视力特别好哦,要不然看不清楚的。-======================================================================== MICROSOFT FOUNDATION
  3. 所属分类:Other Games

    • 发布日期:2017-04-04
    • 文件大小:323401
    • 提供者:风行者
  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. 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. 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. Que

    0下载:
  2. 定义循环队列,完成队列的基本操作:入队和出队等-Defined circular queue, the queue to complete the basic steps: into the team and the teams
  3. 所属分类:source in ebook

    • 发布日期:2017-05-11
    • 文件大小:2118880
    • 提供者:jian
  1. shdl

    0下载:
  2. 实用数据结构基础(第三版),实验4,循环队列的实现和运算-Based the practical data structure (third edition), experimental 4, circular queue implementation and operation
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:982
    • 提供者:田庚
  1. 123

    0下载:
  2. 数据结构常用实验代码 有舞伴 队列循环队列等-Experimental data structure commonly used code such as a circular queue queue partner
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:10342
    • 提供者:冷轧板
  1. xunhuaduilie

    0下载:
  2. 循环队列一站到位介绍及源码. 这是在嵌入式必须用的数据结构之一-One-stop place to introduce the circular queue and source
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:3529
    • 提供者:朱先生
« 1 2 3 4 5 67 8 9 10 11 ... 18 »
搜珍网 www.dssz.com