Here\'s what I have:
public class Node{ Object data; Node next; Node(Object data, Node next){ this.data = data; this.next = next
Recursively navigate through each node until you hit the end.
public void navigate(Node insertNode) { if(next == null) next = insertNode; else next.navigate(insertNode); }