Sort by


  • Queue demo in Java

    Queue is a FIFO (First In First Out) type data structure. The first item to enter queue always comes out of the queue first. In queue, data is inserted (enqueue) in its "rear" and extracted (dequeue) from its "front".

    Here is an implementation of queue using Java. It stores integer type data. It's simple and easy to understand.

    by javadream on 08 Nov 10
    0
    382 downloads
    0
  • Scheduled Queue, Set, List

    A queue, set and list where items are popped/accessible only when their "expiration" time has arrived.

    by shachar on 19 Oct 09
    5
    382 downloads
    0