22 lines
331 B
Java
22 lines
331 B
Java
|
|
/**
|
|
* Beschreiben Sie hier die Klasse Node.
|
|
*
|
|
* @author (Ihr Name)
|
|
* @version (eine Versionsnummer oder ein Datum)
|
|
*/
|
|
public class Node<T>
|
|
{
|
|
public T wert;
|
|
public Node next;
|
|
public Node(T w){
|
|
this.wert = w;
|
|
}
|
|
public void setWert(T w){
|
|
this.wert = w;
|
|
}
|
|
public void setNext(Node n){
|
|
this.next = n;
|
|
}
|
|
}
|