public class Node { public E element; public Node next; public Node (E element, Node next) { this.element = element; this.next = next; } }