/cpp-contiguous-circular-queue

A C++ contiguous circular queue

Primary LanguageC++MIT LicenseMIT

cpp-contiguous-circular-queue

A queue that has an expanding underlying array, similar to std::vector, where the front of array moves allowing popping from the front in O(1) time.