Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. package list;
  2.  
  3. import java.util.NoSuchElementException;
  4.  
  5. public interface Queue<E> {
  6.  
  7. void enqueue(E element);
  8.  
  9. E dequeue() throws NoSuchElementException;
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement