题目描述:
Given an Iterator class interface with methods: next()
and hasNext()
, design and implement a PeekingIterator that support the peek()
operation -- it essentially peek()
at the element that will be returned by the next call to next()
.
Here is an ...