You are viewing a single comment's thread. Return to all comments →
what does this do?
while (node.next != null){ node = node.next; }
and why is it needed?
Insert a Node at the Tail of a Linked List
You are viewing a single comment's thread. Return to all comments →
what does this do?
while (node.next != null){ node = node.next; }
and why is it needed?