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 ...
2
votes
5answers
457 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 ...
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 ...