public class Node { public int wert; public Node next; public void setWert(int w){ this.wert = w; } public void setNext(Node n){ this.next = n; } }