The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
668 views

O(1) circular buffer in haskell?

I'm working on a small concept project in Haskell which requires a circular buffer. I've managed to create a buffer using arrays which has O(1) rotation, but of course requires O(N) for ...
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 ...
6
votes
5answers
274 views

what is called ring in emacs?

Unlike windows style self explanatory copy/cut/paste commands, I could not understand ring concept in emacs. Since I don't program very often in emacs, I could have not realized the value of ring ...
5
votes
1answer
298 views

How to implement CHCircularBuffer in iOS project?

for my game iOS project I need a ring buffer. It should work similar to a queue where elements go out and go in but the total amount of elements in the buffer should stay the same. I implemented the ...
4
votes
8answers
762 views

Do any Java libraries provide a random access Queue implementation?

I'm implementing a sliding window over a stream of events, in Java. So I want a data structure which allows me to do the following: add to the end of the data structure when new events occur; remove ...
3
votes
2answers
35 views

ring buffer with numpy/ctypes

I'm developing a client which will receive the [EEG] data over tcp and write it to the ring buffer. I thought it can be very convenient to have the buffer as a ctypes or numpy array because it's ...
3
votes
1answer
158 views

Circular buffer implementation with variable-sized items

I need to code a shared buffer (1R thread/1W thread) in C to asynchronously dump binary program output to I/O. I normally use the classical circular buffer implementation when it comes to write a ...
3
votes
5answers
106 views

How do I keep a list of only the last n objects?

I want to do some performance measuring of a particular method, but I'd like to average the time it takes to complete. (This is a C# Winforms application, but this question could well apply to other ...
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
624 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 ...
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?
3
votes
3answers
561 views

Where can I find a good Delphi or Object Pascal implementation for a circular buffer

My main purpose is to have a generic data buffer that I can use for transfers. I'm thinking of something along the lines of what XCopy did. Is there something already made out there or a good ...
2
votes
0answers
28 views
+100

Video recording to a circular buffer on Android

I'm looking for the best way (if any...) to capture continuous video to a circular buffer on the SD card, allowing the user to capture events after they have happened. The standard video recording ...
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
2answers
74 views

Any existing ring buffers in .NET that can have multiple consumers?

Wondering if there is an existing ring buffer in .NET that has only one writer, but can have multiple consumers? Needless to say, there are multiple threads reading from this buffer (but only one ...
2
votes
2answers
80 views

Manage Threads Relationship in C#

Now, i am learning multi-threading and usage of it in C#. So, i face the problem as below: (Sorry for my so simple question) Suppose that, we have two classes named Producer and Consumer. Producer ...
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
2answers
251 views

How do you iterate backward over circular buffer without a conditional?

Iterating forward through a circular buffer without using a conditional is easy with the remainder operator... iterator = (iterator + 1) % buffer_size; I can't for the life of me figure out the ...
2
votes
1answer
736 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
3answers
1k views

Implementing a fixed-size log file, or a circular buffer on disk

I checked this question, but it's not what I'm looking for. I'm trying to figure out how to cap a log file's size (say, 10MB), and as soon as it's hit, either: start writing to the beginning, ...
2
votes
6answers
1k views

CircularBuffer IDictionary in C#?

I need a CircularBuffer IDictionary. Can anyone point me to a good open source implementation. So a IDictionary that has a maximum capacity, say configured to 100 items, which when item 101 is added ...
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 : ...
2
votes
6answers
1k views

How to best sort a portion of a circular buffer?

I have a circular, statically allocated buffer in C, which I'm using as a queue for a depth breadth first search. I'd like have the top N elements in the queue sorted. It would be easy to just use a ...
1
vote
0answers
156 views

Simple circular buffer wrap-around - pascal delphi [closed]

I have written a little circular buffer for integers. My requirements were to add an integer on at a time and to read from the circular buffer as though it were an array wrapping around ...
1
vote
1answer
127 views

Circular buffer Vs. Lock free stack to implement a Free List

As I have been writing some multi-threaded code for fun, I came up with the following situation: a thread claims a single resource unit from a memory pool, it processes it and sends a pointer to ...
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
709 views

Implementing a deque using a circular array?

I'm having a lot of trouble implementing this deque using a circular array; in particular, the remove methods seem to be removing the wrong elements no matter what I try. Can anyone help? public ...
1
vote
2answers
254 views

circular array in c for a delay line

I'm trying to find any resources online for programming a delay line in c. I tried implementing this one here https://ccrma.stanford.edu/~jos/doppler/Variable_Delay_Line_Software.html. The problem ...
1
vote
1answer
469 views

Qt and Boost circular buffer

I'm trying to include the boost circular buffer into my project. I installed boost onto my computer using macports. not sure what library to include for the boost libs but I have included the ...
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 ...
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 ...
1
vote
2answers
504 views

Circular buffer pointer irregularities

This is a follow up on this question: Display previously received UART values. After implementing a circular buffer on the microcontroller, it seems that there is a problem with the pointers. Sent ...
0
votes
0answers
61 views

boost::interprocess and circular_buffer , C++

My English is approximate, I apologize for this inconvenience. I am c++ developer and I would like to use boost::circular_buffer in my boost::interprocess program. This following code compiles but ...
0
votes
1answer
95 views

2D Ring buffers in C

I have coded a simple ring buffer which has a ring size of 5 to store values of type A. Now I have to extend this buffer to store type B values(also 5 values). To give an overview, I have defined the ...
0
votes
1answer
104 views

circular array class in python

I have a project to create a circular array class, and the language I will be using is python. I am new to classes in python, but after reading through some webpages and chapters in books I think I ...
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
206 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
1answer
252 views

C - circular character buffer w/ pthreads

I have a homework assignment where I have to implement a circular buffer and add and remove chars with separate threads: #include <pthread.h> #include <stdio.h> #define QSIZE 10 ...
0
votes
2answers
147 views

Circular buffer in Turbo Prolog 2.0

I need to write something like circular buffer in TurboProlog 2.0 for calculating average. I don't know what predicates i need to write, and have no idea how link them together.
0
votes
0answers
361 views

Python ring buffer access with read and write pointers

I am using a Ctypes to interact with a DLL which gives access to data written from a piece of hardware. First I call a function in the DLL to assign a block of memory for the data samples. I assign ...
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
0answers
474 views

Circular Buffer Trace Listener for TextWriterTraceListener

I use TextWriterTraceListener for Tracing, and I want use an Circular Buffer Trace Listener for TextWriterTraceListener. Microsoft has one Circular Buffer Trace Listener for XmlWriteTraceListener. ...
0
votes
4answers
483 views

end pointer problem of a circular buffer

I'm using Visual c++. I'm trying to implement a circular buffer, this CB must handle a specific type of data...in fact, it's a structure data where we have some kind of raw data to be stored in a ...
0
votes
3answers
277 views

Read and write from a file in a circular buffer fashion

i need to make a file behave as a circular buffer. From one thread i have to write the data.From another thread i have read from the file. But the size of the file is fixed. Any idea?
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 ...
0
votes
1answer
595 views

Circular buffer in VB.NET

How can I create a circular buffer on the heap in VB.NET ? This would be used for audio playback via P/Invoke to winmm.dll waveoutopen and waveoutwrite to support development of a software synth. I ...
0
votes
3answers
378 views

How would YOU do/write this homework assignment? (theoretical)

I'm not asking for anyone to do this homework for me, but I bring it up because it's a very good practical introduction to C# and threading, but at the same time I feel it's perhaps a little too ...