Advertisement
Guest User

Untitled

a guest
Dec 16th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. public void push(T newEntry) {
  2. list.add(newEntry);
  3. }
  4.  
  5. public T pop() {
  6. list.remove(0);
  7. }
  8.  
  9. public T peek() {
  10. list.getEntry(0);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement