andrewyung / CircularBuffer

An implementation of a dynamically allocated circular buffer. C++11. Unit tested with Google test

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CircularBuffer

An implementation of a circular buffer. Test cases through Google unit tests.

Uses table for looking up index to memory indexed locations and stack for available memory locations.

Invalidation would occur during resizing (only done when insert or add is called and there is not enough capacity in buffer)

About

An implementation of a dynamically allocated circular buffer. C++11. Unit tested with Google test

License:MIT License


Languages

Language:C++ 98.6%Language:C 1.4%