I see a lot of templates and complicated data structures for implementing a circular buffer.

How do I code a simple integer circular buffer for 5 numbers?

I'm thinking in C is the most straightforward?

Thanks.

link|improve this question

5  
The complexity of the code goes up with how safe and robust you want it to be. Do you want it to prevent underflow/overflow, for instance? – Oli Charlesworth Sep 1 '10 at 20:38
2  
Note: a circular (ring) buffer is different than a circular queue. – Thomas Matthews Sep 1 '10 at 20:42
I just need to store the 5 last values of some data, so whatever has a better design to do that. – Tommy Sep 1 '10 at 20:43
feedback

3 Answers

up vote 3 down vote accepted

Have an array, buffer, of 5 integers. Have an index ind to the next element. When you add, do

buffer[ind] = value;
ind = (ind + 1) % 5;
link|improve this answer
1  
From the personal experience file, you need to be careful that ind is not negative. If you change the second line to "ind = (max(0,ind) % 1) + 5;", you don't have to worry about negative values for ind. – photo_tom Sep 2 '10 at 2:40
feedback

Take an array, arr, an index idx, and a counter, num.

To insert foo, say arr[idx++] = foo; idx %= buffer_len; num++;.

To read out an item into foo, say foo = arr[(idx-num)%buffer_len]; num--;.

Add boundary checks.

link|improve this answer
1  
+1 for the modulus operator. – Thomas Matthews Sep 1 '10 at 20:41
feedback

If the size and data type of your buffer are fixed, a simple array is all you need:

 int buffer[5];

Add to that a couple pointers:

 int* start = &buffer[0];
 int* end   = &buffer[4]+1;
 int* input = start;
 int* output = start;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.