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.
|
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.
| |||||||||||
feedback
|
|
Have an array,
| |||||
feedback
|
|
Take an array, To insert To read out an item into Add boundary checks. | |||||
feedback
|
|
If the size and data type of your buffer are fixed, a simple array is all you need:
Add to that a couple pointers:
| |||
|
feedback
|