If I have a linked-list of ints, how can I iterate / travel through the linked-list so that I can print each element with cout in C++?
|
|
Presumably, your linked list has the typical linked list operations. These include getting an iterator that refers to the first element, incrementing the iterator to refer to the next element, checking if the iterator has run off the end of the list, and so on. The algorithm is:
If you don't know how to do any of these specific steps, then you don't know how to use the particular linked class you have. To help you with that, we'd need to see its code (or a link to its documentation if it's an off-the-shelf class). A typical C++ implementation would look something like this:
|
||||
|
|
|
You could use this:
and call it like this:
|
|||||||||||
|