Advertisement
KoMeDiAnT

Queue Interface

Dec 4th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.12 KB | None | 0 0
  1. package Containers;
  2.  
  3. public interface Queue<Item> {
  4.     void enqueue(Item item);
  5.     Item dequeue();
  6.     Item peek();
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement