Skip to content

fredhur/CircularQueueBuffer

Repository files navigation

CircularQueue Buffer DOCS

Index

  1. Concept
  2. Three types of Circular Queue Buffer
  3. Installation

1. Concept

CircularQueue Buffer is fixed size Queue which seems like FIFO queue. The difference between FIFO queue and CircularQueue Buffer is that unlike FIFO queue, CircularQueue Buffer shifts data when CircularQueue Buffer's size is maximum. CircularQueue Buffer is developed by using this concept via circular queue concept.
Wiki : Circular Queue

Three types of CircularQueue Buffer

Various Kinds of CircularQueue Buffer
  1. QueueBufferArray
  2. QueueBufferLinkedList
  3. SimpleBuffer

3. Installation

It is header-only file. Just copy "SimpleBuffer.h" , "QueueBufferArray.h, and "QueueBufferLinkedList.h" to your project.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages