Tagged Questions

6
votes
4answers
164 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 ...
3
votes
5answers
109 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
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?
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
461 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
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 ...
0
votes
0answers
475 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. ...