搜索资源列表
r_buf
- 自己写的一个用在单片机串口通讯中的环形队列缓冲区管理模块。-himself wrote a serial microcontroller used in the communications ring buffer queue management module.
sms_que
- 一个实现可以在进程间或者线程间通信的高效环形队列类,特别适用于那种生产者/消费者模型的应用中-an achievement in inter-process communication between threads or efficient circular queue category, particularly applicable to the kind of producer / consumer model of the application
JIMMYLIXY
- 这是我的一个贪吃蛇C程序,注释还没有写,部分次要的函数还没实现,但核心以实现完毕,主要的算法核心是用一个环形队列实现蛇的前进,请大家批评指正。-This is a huge memory of my C procedures, no written notes, some secondary function has not been achieved. However, in order to achieve completion of the core, the main core of t
Myfb
- K阶菲波那契算法,运用环形队列实现,空间是K+1-K bands Fibonacci algorithm using circular Queuing, and the space is a K
smart111111111
- C++通用模板库,详见附件的 Smart.h,例子见test.cpp 包括: 自动指针CAutoPtr『支持多元素,赋值时会完全把右值传给左值』 智能buffer CSmartBuf『用于在堆栈中定义未知大小的buffer,兼具高效和通用性』 快速映射CQuickMap 环形队列CRingQ-C common template library, as detailed in the annex to the Smart.h, test.cpp see examples include : aut
3
- 同时rear和len分别指示环形队列中队尾元素的位置和内含元素的个数。设计相应的入队和出队算法。
3
- 假设以数组sequ[MaxSise]存放环形队列的元素,同时rear和len分别指示环形队列中队尾元素的位置和内含元素的个数
TestCirQue
- 环形队列,经过测试通过,很好用,可以增加,可以减少,FIFO
COM_IN_INT.rar
- 51单片机采用环形队列输入缓冲区,以中断方式接收串口数据,51 MCU using circular queue input buffer to receive data from serial port interrupt
STM32Pdma
- STM32串口驱动(环形队列+内存动态分配+DMA+拼音检索)-STM32 serial driver (annular queue+ memory the dynamic allocation+DMA+ Pinyin retrieve)
BufList
- 环形缓冲队列,带有Event激活,多入单出,用于线程间通信。-Ring buffer queue with Event-activated, multi-income single out for inter-thread communications.
CircleQueue_with_array_list
- 本程序中分别用数组和链表实现了环形队列,有利于理解环形缓冲区的实现。-This program implements circle queue by array and list.It is useful to understand the solution to circle buffer.
ch02_LinerList
- 队列,包含线性队列、环形队列、顺序、静止等等。-ch02_LinerList.rar
circular_deque
- 找到一个作者的关于环形队列的源码,分享一下 boost 已经有了一个这样 的缓冲区,circular_buffer,由Jan Gaspar设计实现,它的数据结构跟传统的环形队列(很多数 据结构书上有相关介绍)一样,速度比传统的环形队列快得多。只不过我对它的表现还是不 太满意,觉得它还不够快。为此,我设计了一个简单的循环双端队列,它的数据结构与 circular_buffer 没什么两样,但没有编写迭代器,也没有给出太多公有成员函数,只不过它 的速度要快一些-To find
AT89C52
- 环形队列在C51中的定义,初始化函数,队列的读写操作-Circular queue in the C51, as defined in the initialization function, the queue of read and write operations
hash2
- 标准C的Hash表实现,采用环形队列加顺推的原理,实现高效的HASH表,参考暴雪游戏的实现原理,原创-Standard C, Hash table implementation, pushed along by the ring plus the principle of the queue, to achieve efficient HASH table, refer to the realization of the principle of Blizzard games, original
2011os_asn1
- c语言编写的多线程生产者消费者的程序,采用环形队列-c language multi-threaded program producers and consumers, using circular queue
huanxingduilie
- 环形队列,数据结构课程,已通过编译,C语言编码,VC 2008-Circular queue data structure courses, compile C language coding, VC 2008
STM32-serial-port-driver
- STM32串口驱动(环形队列+内存动态分配+DMA+拼音检索)-STM32 serial port driver (circular queue+ memory dynamically allocated+ DMA+ phonetic retrieval)
环形队列
- 环形队列是在实际编程极为有用的数据结构,它有如下特点。它是一个首尾相连的FIFO的数据结构,采用数组的线性空间,数据组织简单。能很快知道队列是否满为空。能以很快速度的来存取数据。 因为有简单高效的原因,甚至在硬件都实现了环形队列.环形队列广泛用于网络数据收发,和不同程序间数据交换(比如内核与应用程序大量交换数据,从硬件接收大量数据)均使用了环形队列.(The ring queue is a very useful data structure in practical programming,