Skip to content
Advertisement

LinkedList inside a LinkedList iteration in java

Im trying to iterate a Linked List inside of a linked list but I’m not sure how to proceed with it. I’m used to using a passed parameter for what will be iterated but when I’m iterating a linked list within a linked list and plan to iterate until I hit a record that matches a passed dummy object.

Here is an example of what I’m trying to do

JavaScript

///Here is the SongComparator class

JavaScript

How am I supposed to iterate the LinkedList within the LinkedList of albums without a parameter? And if it requires a parameter how I’m I supposed to determine what to use for the parameter considering it will be changing with each iteration of the outer while loop.

Advertisement

Answer

you can use java 8 streams, instead of creating iterators,

in order to find whats in album 1 and album 2 use:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement