Does anybody know how to join multiple iterators in Java? The solution I found iterate through one iterator first, and then move on to the next one. However, what I want is when next() gets called, it first returns the first element from the first iterator. Next time when next() gets called, it returns the first element from the second iterator, and so on.
Thanks
Using Guava’s
AbstractIteratorfor simplicity:This will give you the desired “interleaved” order, it’s smart enough to deal with the collections having different sizes, and it’s quite compact. (You may wish to use
ArrayDequein place ofLinkedListfor speed, assuming you’re on Java 6+.)If you really, really can’t tolerate another third-party library, you can more or less do the same thing with some additional work, like so:
For reference, the “all of iter1, all of iter2, etc” behavior can also be obtained using
Iterators.concat(Iterator<Iterator>)and its overloads.