Design an iterator for a collection of collections in java. The iterator should hide the nesting, allowing you to iterate all of the elements belonging to all of the collections as if you were working with a single collection
|
|
Here is a possible implementation. Note that I left remove() unimplemented:
|
|||
|
|
You've already accepted an answer, but if you want to look at code, wouldn't it make more sense to look at code that's actually heavily tested and widely used in production? |
|||
|
|
|
if all you have to work with is the java Iterator: which just have hasNext(), next() and remove(), i figured you have to go around it. Process it as you will process a 2D array, that is, with an outer and inner loop, because they have same "arrangement" but different datatype. As you process, you transfer them to a new collection. so maybe a private method:
end I hope this helps. There should be other ways to solve it i guess. |
||||
|
|
|
First, take a look at the implementation of the iterator in java.util.LinkedList http://www.docjar.com/html/api/java/util/LinkedList.java.html From there your task is easy just implement a single iterator that takes into account the fact that it is iterating over collections. Regards. |
|||
|
|