搜索资源列表
Queue
- Circular Buffer / Queue immplementation-Circular Buffer/Queue immplementation
CircularBuffer
- C code for Circular buffer
Bufor
- Circular buffer using a cyclone memory ( Quartus II and VHDL .)-Circular buffer using a cyclone memory ( Quartus II and VHDL .)
SBuffer
- 环形字符缓冲区 通过指针的移动,减少内容拷贝的次数 先进先出队列-Circular character buffer by moving the pointer to reduce the number of copies the contents of FIFO queue
uartlibrary
- DEscr iptION: An interrupt is generated when the UART has finished transmitting or receiving a byte. The interrupt handling routines use circular buffers for buffering received and transmitted data. The UART_RX_BUFFER_SIZE and UART_TX
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
55
- linux下多线程结构体数组对文件进行读写操作,涉及一条线程打开文件,读取一个文件数据,入队到循环队列buffer;另一条线程循环队列buffer进行出队写入到另一个文件中。-Under Linux multithreaded structure array to the file to read and write operations, involving a thread to open the file, read a file data, the team to the circula
66
- linux下c语言循环队列中,进行入队出队时把数据放进循环队列缓冲区进行读写操作。可以判断队列状态:满、空、运行正确、运行错误 。属于比较经典的例子-Cyclic queue, under Linux c team when the team put the data into the circular queue buffer to read and write operations. To judge the queue status: full, empty, correct operat
Wijdkws
- 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
