0
votes
3answers
42 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 …
3
votes
7answers
165 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 …
2
votes
2answers
196 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 th …
2
votes
6answers
2k 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 performan …
2
votes
6answers
443 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 whe …
0
votes
3answers
272 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 perhap …
0
votes
4answers
402 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
500 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 …
