forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_284.java
39 lines (32 loc) · 1.1 KB
/
_284.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.fishercoder.solutions;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.Queue;
public class _284 {
public static class Solution1 {
public static class PeekingIterator implements Iterator<Integer> {
private Queue<Integer> queue;
public PeekingIterator(Iterator<Integer> iterator) {
// initialize any member here.
queue = new LinkedList<>();
while (iterator.hasNext()) {
queue.add(iterator.next());
}
}
// Returns the next element in the iteration without advancing the iterator.
public Integer peek() {
return queue.peek();
}
// hasNext() and next() should behave the same as in the Iterator interface.
// Override them if needed.
@Override
public Integer next() {
return queue.poll();
}
@Override
public boolean hasNext() {
return !queue.isEmpty();
}
}
}
}