//This class creates objects that hold a value and a link to the next Node in the linked list. //To simplify coding, we have made everything public. //Author: Patrick Campeau public class Node { public int value; public Node next; public Node(int v, Node n) { value = v; next = n; } }