Tagged Questions
3
votes
1answer
119 views
Template Class Type Sizing
I have written a template class for a circular buffer:
template <class T> class CRingBuffer { /* ... */ };
Some of the operations this class performs rely on an accurate evaluation of the ...
3
votes
2answers
623 views
Sharing data array among threads-C++
I know that there are similar questions which are already answered, but I am asking this question since they don’t exactly give what I would like to know.
This is about synchronization between ...
2
votes
2answers
90 views
Iterators, value of result of call to end() changes as data is added to circular_buffer
I discovered earlier today that the iterators of a boost::circular buffer were not behaving quite as I expected them to in a multi-threaded environment. (although to be fair they behave differently ...
2
votes
5answers
458 views
How to efficiently wrap the index of a fixed-size circular buffer
I have a fixed size circular buffer (implemented as an array): upon initialization, the buffer gets filled with the specified maximum number of elements which allows the use of a single position index ...
2
votes
1answer
735 views
Problem creating a circular buffer in shared memory using Boost
I am trying to create a circular buffer in shared memory using Boost circular_buffer and Interprocess libraries. I compiled and ran the the example given in the Interprocess documentation for creating ...
2
votes
5answers
1k views
Simplified algorithm for calculating remaining space in a circular buffer?
I was wonder if there is a simpler (single) way to calculate the remaining space in a circular buffer than this?
int remaining = (end > start)
? end-start
: ...
1
vote
3answers
139 views
C++ how to mix a map with a circular buffer?
I wonder is it possible to have a map that would work like boost cirkular buffer. Meaning it would have limited size and when it would get to its limited size it will start owerriting first inserted ...
1
vote
1answer
170 views
How to store intermediate values of circular buffer iterator?
I am a using a boost regex on a boost circular buffer and would like to "remember" positions where matches occur, what's the best way to do this? I tried the code below, but "end" seems to store the ...
1
vote
1answer
214 views
c++: Accessing the Elements of a Map of Strings and Boost Circular Buffers
I'm writing a program that reads a text file of city names into a vector, then uses a stl::map to associate each city with a boost circular buffer. I also have a vector of temperature data, which I ...
1
vote
3answers
645 views
Array wraparound with modulo of unsigned
I'm trying to implement a lagged Fibonacci pseudo-random number generator for integers up to some maximum. It maintains an array of values
int values[SIZE] = { /* 55 seed values */ };
and uses the ...
0
votes
0answers
94 views
boost::circular_buffer increment begin pointer without use push_back()
I just want to increment pointer of boost::circular_buffer container without use of push_back() method. I saw an increment() method but it is in private section. I need write directly to circular ...
0
votes
2answers
205 views
Boost Circular Buffer, how to make it call some function when it is filled?
I like Boost Templated Circular Buffer Container, but how to get when it was filled 100%?
#include <boost/circular_buffer.hpp>
int main() {
// Create a circular buffer with a ...
0
votes
0answers
165 views
Initilizing boost::multi_array with boost::circular_buffer<double>
i would like to create a boost::multi_array of boost::circular_buffer, but i dont know how to initiate it. It should be 12 array's of boost::circular_buffer of a size 50.
I tried
...
0
votes
3answers
1k views
How do I code a simple integer circular buffer in C/C++?
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 ...