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

搜索资源列表

  1. Order-circular-queue

    0下载:
  2. 数据结构支持的顺序循环队列,包含入队出队,取队头,清队,显示队列-The order cycle data structures to support queues, including a team into the team, take the first team, clean team, display the queue
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:120476
    • 提供者:韩士杰
  1. data_struct-and-find_sort

    0下载:
  2. 常用数据结构,包括链表、二叉树、栈、循环队列,以及查找排序算法:二分查找,插入排序,选择排序、冒泡排序-Commonly used data structures, including linked lists, binary trees, stacks, queues cycle, and to find sorting algorithms: binary search, insertion sort, selection sort, bubble sort
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:5028
    • 提供者:齐振涛
  1. XUESHENDAPEIWENTI

    0下载:
  2. 一班有m 个女生,有n 个男生(m 不等于n ),现要开一个舞会。男女生分别编号坐在舞池的两边的椅子上。每曲开始时,依次从男生和女生中各出一人配对跳舞,本曲没成功配对者坐着等待下一曲找舞伴。 请设计一系统模拟动态地显示出上述过程,要求如下: (1)输出每曲配对情况; (2 )计算出任何一个男生(编号为X )和任意女生(编号为Y ),在第K 曲配对跳舞 的情况.至少求出K 的两个值 分别用循环队列和链队列实现了 -A group of girls with m,
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:1532
    • 提供者:陈蔚
  1. lie

    0下载:
  2. 完成对循环队列结构的定义,以及对循环队列的各种基本运算的实现(每种基本运算用一个函数来实现)。 基本运算包括:初始化Init_sqqueue运算、判队空Empty_sqqueue运算、入队En_sqqueue运算、出队De_sqqueue运算、取队头元素Gethead_sqqueue运算。 -Completion of the circular queue structure is defined, and the circular queue implementation of various
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:679
    • 提供者:suweizhe
  1. duilie

    0下载:
  2. 完成对循环队列结构的定义,以及对循环队列的各种基本运算的实现(每种基本运算用一个函数来实现)。 -Completion of the circular queue structure is defined, and the circular queue implementation of various basic operations (each basic operations to implement a function).
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:1224
    • 提供者:suweizhe
  1. cirsequeue

    0下载:
  2. 数据结构之循环队列,欢迎大家提宝贵意见啊-The circular queue data structure, ah welcome valuable advice
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:838
    • 提供者:陶永鹏
  1. queue

    0下载:
  2. 循环队列实行删除,插入功能等的程序代码-queue insert and delete function
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:888
    • 提供者:陈琳
  1. PersistCircleQue

    0下载:
  2. 循环队列模板,数据存入在文件中,增加数据时文件大小不变,新数据会挤出旧数据。-Data stored in the file c++ circular queue template, when the file reaches a certain size, the old data out of the new data will go, but the file size remains unchanged. When the batch reading can significantly
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:1105
    • 提供者:anyw
  1. circleQueue

    0下载:
  2. 使用C++语言实现的一个循环队列操作,简单易懂-use the language of C++ to achieve a circle queue, easily understood
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:1623
    • 提供者:常智华
  1. stack

    0下载:
  2. 对顺序栈进行的一系列操作,出栈,入栈,循环队列,奇数位出栈,偶数位出栈等-On the order of a series of stack operations, stack, stack, circular queue, a stack bit odd, even bits of the stack, etc.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1041
    • 提供者:李娟
  1. QueueTest

    0下载:
  2. C语言实现队列的多态性。能用循环队列对任何数据类型进行操作。-The source code uses C to realize the polymorphism of Loop Queue
  3. 所属分类:Other Embeded program

    • 发布日期:2017-04-02
    • 文件大小:3061
    • 提供者:Stefan Ming
  1. SqQueue

    0下载:
  2. 数据结构中循环队列的简单实现,这是我自己写的,希望有更多的建议-The circular queue simple to implement,Hope to have more advice
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:295667
    • 提供者:liangjia
  1. Fibonacci

    0下载:
  2. 4阶斐波那契序列如下:f0=f1=f2=0, f3=1,…,fi=fi-1+fi-2+fi-3+fi-4, 利用容量为k=4的循环队列,构造序列的前n+1项(f0, f1 , f2 ,… fn ),要求满足fn ≤200而fn+1 >200。 -4-order Fibonacci sequence is as follows: f0 = f1 = f2 = 0, f3 = 1, ..., fi = fi-1+ fi 2+ fi-3+ fi-4, With size k = 4
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:310106
    • 提供者:lv
  1. C-P-P-circular-queue

    0下载:
  2. 完整的一段C++的循环队列实现,有详细的注释-Complete a section of C++ circular queue implementation, with detailed comments
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:1368
    • 提供者:邹威威
  1. Dancer

    0下载:
  2. 使用两个循环队列,实现男女舞伴配对问题。即:舞厅男女队列中人数的配对,以及剩余人数和对头姓名。-The use of two circular queue, women realize the partner matching problem. Namely: ballroom of the number of men and women in the queue matching and surplus number and name adversary.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:296282
    • 提供者:王震
  1. test

    0下载:
  2. 循环队列算法实现,例子说明,简单明了,容易理解。-Circular queue algorithm, examples illustrate the simple, easy to understand.
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:935
    • 提供者:zhu
  1. myproject_Queue

    0下载:
  2. 队列实现,及其功能实现。约瑟夫环的实现,循环队列。-Queue,the use of queue .there are 7 using.
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:238806
    • 提供者:mpc
  1. xunhuanduilie_finish

    0下载:
  2. 使用循环队列的方式接受或发送串口数据,实现单片机与电脑的通信,带液晶显示程序。-Circular queue to accept or send serial data, with the LCD program.
  3. 所属分类:SCM

    • 发布日期:2017-04-03
    • 文件大小:54914
    • 提供者:朱光旭
  1. list

    0下载:
  2. 循环队列,数据结构学习,内容很浅,不要期望太高-I do know how to descrite my file,so I sorry for my way
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:581
    • 提供者:wqm
  1. xhdl

    0下载:
  2. 循环队列,数据结构中的基本程序。简单易学,易理解。-cirular queue
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1125
    • 提供者:xinling
« 1 2 3 4 5 6 78 9 10 11 12 ... 17 »
搜珍网 www.dssz.com