In a linked list you can iterate over the nodes li...
# announcements
r
In a linked list you can iterate over the nodes like this
for (Node n = head; n.value < max; n = n.next)