Tagged Questions
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
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 ...