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