Problem Description
Design an iterator that supports the peek operation on an existing iterator in addition to the hasNext and the next operations.
Key Insights
- The PeekingIterator must maintain the state of the underlying iterator to provide peek functionality.
- We need to handle the case where the iterator has elements left and where it has reached the end.
- The peek method should return the next element without advancing the iterator.
Space and Time Complexity
Time Complexity: O(1) for next(), hasNext(), and peek() operations.
Space Complexity: O(1) for storing the next element to be returned by peek().
Solution
We can create a class PeekingIterator
that wraps an existing iterator. The class will have an internal variable to store the next element retrieved from the iterator. Upon initialization, we will load the first element from the iterator into this variable.
The next()
method will return the stored next element and then update it to the subsequent element from the iterator. The peek()
method will return the stored next element without modifying the iterator's state. The hasNext()
method checks if there are more elements in the underlying iterator.