Advertisement
Aldin_SXR

queue peek()

Mar 4th, 2024
582
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. /* Reads an item at the front of the queue, without removing it */
  2. public Data peek() {
  3.     if (isEmpty()) {                                                // 1
  4.         throw new NoSuchElementException("Queue is empty!");        // 1
  5.     }
  6.  
  7.     return head.data;                                               // 2
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement