Problem
Design an iterator that supports the peek
operation on an existing iterator in addition to the hasNext
and the next
operations.
Implement the PeekingIterator
class:
PeekingIterator(Iterator<int> nums)
Initializes the object with the given integer iteratoriterator
.int next()
Returns the next element in the array and moves the pointer to the next element.boolean hasNext()
Returnstrue
if there are still elements in the array.int peek()
Returns the next element in the array without moving the pointer.
Note: Each language may have a different implementation of the constructor and Iterator
, but they all support the int next()
and boolean hasNext()
functions.
Examples
Example 1:
|
|
Solution
Method 1 - Implementing iterator
Here is the approach:
- The
PeekingIterator
class wraps around anIterator<Integer>
and adds thepeek
functionality. - The
peek
method simply returns the cachednextElement
. - The
next
method returns the cachednextElement
and updates it by fetching the next element from the iterator. - The
hasNext
method checks if thenextElement
is not null.
Code
|
|
|
|
Complexity
- ⏰ Time complexity:
O(1)
for all operations (peek
,next
, andhasNext
) as we perform constant-time operations. - 🧺 Space complexity:
O(1)
as we only use a few extra variables to store the current element and the iterator.