Tagged Questions
9
votes
6answers
25k views
How do you implement a circular buffer in C?
I have a need for a fixed-size (selectable at run-time when creating it, not compile-time) circular buffer which can hold objects of any type and it needs to be very high performance. I don't think ...
6
votes
4answers
163 views
Alternative for the Stack
I am working in .Net environment using C#. I need some alternative for the Stack data structure. Some kind of bound stack. The quantity of elements in the collection shouldn't exceed some fixed ...
3
votes
7answers
2k views
What are the uses of circular buffer?
What are some of the uses of circular buffer?
What are the benefits of using a circular buffer?
is it an alternative to double linked list?
1
vote
1answer
781 views
How good is the memory mapped Circular Buffer on Wikipedia?
I'm trying to implement a circular buffer in C, and have come across this example on Wikipedia. It looks as if it would provide a really nice interface for anyone reading from the buffer, as reads ...