Size-limited queue that holds last N elements in Java

后端 未结 8 1397
灰色年华
灰色年华 2020-11-22 13:13

A very simple & quick question on Java libraries: is there a ready-made class that implements a Queue with a fixed maximum size - i.e. it always allows addi

相关标签:
8条回答
  • 2020-11-22 13:22

    I like @FractalizeR solution. But I would in addition keep and return the value from super.add(o)!

    public class LimitedQueue<E> extends LinkedList<E> {
    
        private int limit;
    
        public LimitedQueue(int limit) {
            this.limit = limit;
        }
    
        @Override
        public boolean add(E o) {
            boolean added = super.add(o);
            while (added && size() > limit) {
               super.remove();
            }
            return added;
        }
    }
    
    0 讨论(0)
  • 2020-11-22 13:24

    Apache commons collections 4 has a CircularFifoQueue<> which is what you are looking for. Quoting the javadoc:

    CircularFifoQueue is a first-in first-out queue with a fixed size that replaces its oldest element if full.

        import java.util.Queue;
        import org.apache.commons.collections4.queue.CircularFifoQueue;
    
        Queue<Integer> fifo = new CircularFifoQueue<Integer>(2);
        fifo.add(1);
        fifo.add(2);
        fifo.add(3);
        System.out.println(fifo);
    
        // Observe the result: 
        // [2, 3]
    

    If you are using an older version of the Apache commons collections (3.x), you can use the CircularFifoBuffer which is basically the same thing without generics.

    Update: updated answer following release of commons collections version 4 that supports generics.

    0 讨论(0)
  • 2020-11-22 13:28

    You can use a MinMaxPriorityQueue from Google Guava, from the javadoc:

    A min-max priority queue can be configured with a maximum size. If so, each time the size of the queue exceeds that value, the queue automatically removes its greatest element according to its comparator (which might be the element that was just added). This is different from conventional bounded queues, which either block or reject new elements when full.

    0 讨论(0)
  • 2020-11-22 13:33

    Guava now has an EvictingQueue, a non-blocking queue which automatically evicts elements from the head of the queue when attempting to add new elements onto the queue and it is full.

    import java.util.Queue;
    import com.google.common.collect.EvictingQueue;
    
    Queue<Integer> fifo = EvictingQueue.create(2); 
    fifo.add(1); 
    fifo.add(2); 
    fifo.add(3); 
    System.out.println(fifo); 
    
    // Observe the result: 
    // [2, 3]
    
    0 讨论(0)
  • 2020-11-22 13:33

    The only thing I know that has limited space is the BlockingQueue interface (which is e.g. implemented by the ArrayBlockingQueue class) - but they do not remove the first element if filled, but instead block the put operation until space is free (removed by other thread).

    To my knowledge your trivial implementation is the easiest way to get such an behaviour.

    0 讨论(0)
  • 2020-11-22 13:34

    An LRUMap is another possibility, also from Apache Commons.

    http://commons.apache.org/collections/apidocs/org/apache/commons/collections/map/LRUMap.html

    0 讨论(0)
提交回复
热议问题