搜索资源列表
classcons1t
- windows 下的一个环形buffer的demo,很好的数据结构算法,一个类封装了所有的操作-windows of a circular buffer to the demo, very good data structure algorithms, a package of all categories of operation
CircularBuffer
- Circular Buffer Example
EqueueDemo
- 支持阻塞与非阻塞模型且线程安全的环形缓冲的设计与实现-obstruction and support non-blocking security model is threaded circular buffer Design and Implementation
ring_buffer
- 一个环形缓冲区的实现方法.VC6 MFC 测试 -A circular buffer implementations. VC6 MFC Test
singly-linked-list
- singly linked-list with circular buffer
RingBuffer
- Ring Buffer Implementation A circular buffer or ring buffer is a data structure that uses a single, fixed-size buffer as if it were connected end-to-end. This structure lends itself easily to buffering data streams.-Ring Buffer ImplementationA circ
Queue
- Circular Buffer / Queue immplementation-Circular Buffer/Queue immplementation
CircularBuffer
- C code for Circular buffer
CircularBuffer_Sample
- Code composer studio example file especially for the Circular buffer.
OS_projectC_Mutex
- You are asked to design and implement a simulator for university life where lecturers provide lectures (credits) and students attend lectures (credits) to graduate. This simulator uses a bounded circular buffer shared by lecturers and students. Lectu
circular_buffer_demo
- this how to do a circular buffer-this is how to do a circular buffer
Bufor
- Circular buffer using a cyclone memory ( Quartus II and VHDL .)-Circular buffer using a cyclone memory ( Quartus II and VHDL .)
circular_deque
- 找到一个作者的关于环形队列的源码,分享一下 boost 已经有了一个这样 的缓冲区,circular_buffer,由Jan Gaspar设计实现,它的数据结构跟传统的环形队列(很多数 据结构书上有相关介绍)一样,速度比传统的环形队列快得多。只不过我对它的表现还是不 太满意,觉得它还不够快。为此,我设计了一个简单的循环双端队列,它的数据结构与 circular_buffer 没什么两样,但没有编写迭代器,也没有给出太多公有成员函数,只不过它 的速度要快一些-To find
circbuf_src
- Complete source code for Circular Buffer Implementation
Buffer
- 常见的buffer设计,包括:Fast ring buffer, Loop buffer, Bip buffer, circular character buffer,可以方便的集成到相关代码中-common buffer example and code, including fast ring buffer, loop buffer, bip buffer, circular character buffer, and they can integrate to relative code
example-4
- This example demonstrates the use of Semaphores,Threads, and Timers. Three Filler threads are created that loop waiting for a while and then adding a value to the end of a circular buffer.The main thread removes words the buffer and prints them.-This
example-4
- This example demonstrates the use of Semaphores,Threads, and Timers. Three Filler threads are created that loop waiting for a while and then adding a value to the end of a circular buffer.The main thread removes words the buffer and prints them.-This
Wijdkws
- windows 下的一个环形buffer的demo,很好的数据结构算法-Under the Windows of a circular buffer demo, good data structure algorithm
poift
- windows 下的一个环形buffer的demo,很好的数据结构算法(Under the Windows of a circular buffer demo, good data structure algorithm)
ringbuff
- 圆形缓冲区的一个有用特性是:当一个数据元素被用掉后,其余数据元素不需要移动其存储位置。相反,一个非圆形缓冲区(例如一个普通的队列)在用掉一个数据元素后,其余数据元素需要向前搬移。换句话说,圆形缓冲区适合实现先进先出缓冲区,而非圆形缓冲区适合后进先出缓冲区。(One of the useful properties of the circular buffer is: when a data element is used up, the rest of the data elements wit
