搜索资源列表
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 a
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 o
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.
3
- 同时rear和len分别指示环形队列中队尾元素的位置和内含元素的个数。设计相应的入队和出队算法。
3
- 假设以数组sequ[MaxSise]存放环形队列的元素,同时rear和len分别指示环形队列中队尾元素的位置和内含元素的个数
TestCirQue
- 环形队列,经过测试通过,很好用,可以增加,可以减少,FIFO
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.
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 app
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 o
Myfb
- K阶菲波那契算法,运用环形队列实现,空间是K+1-K bands Fibonacci algorithm using circular Queuing, and the space is a K
3
- 同时rear和len分别指示环形队列中队尾元素的位置和内含元素的个数。设计相应的入队和出队算法。-At the same time, rear and len, respectively, annular instructions squadron tail queue element containing the location and the number of elements. Design corresponding to
3
- 假设以数组sequ[MaxSise]存放环形队列的元素,同时rear和len分别指示环形队列中队尾元素的位置和内含元素的个数-Assuming an array sequ [MaxSise] storage ring queue element, and len, respectively, at the same time rear ring instructions squadron tail queue element conta
TestCirQue
- 环形队列,经过测试通过,很好用,可以增加,可以减少,FIFO-Circular queue, after the test is passed, good use can be increased, can be reduced, FIFO
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.
COM_IN_INT
- 51单片机采用环形队列输入缓冲区,以中断方式接收串口数据-51 MCU using circular queue input buffer to receive data from serial port interrupt
环形队列
- 环形队列是在实际编程极为有用的数据结构,它有如下特点。它是一个首尾相连的FIFO的数据结构,采用数组的线性空间,数据组织简单。能很快知道队列是否满为空。能以很快速度的来存取数据。 因为有简单高效的原因,甚至在硬件都实现了环形队列.环形队列广泛用于网络数据收发,和不同程序间数据交换(比如内核与应用程序大量交换数据,从硬件接收大量数据)均使用了环形队列.(The ring queue is a very useful data struct