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()Returnstrueif 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
PeekingIteratorclass wraps around anIterator<Integer>and adds thepeekfunctionality. - The
peekmethod simply returns the cachednextElement. - The
nextmethod returns the cachednextElementand updates it by fetching the next element from the iterator. - The
hasNextmethod checks if thenextElementis 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.