|
|
|
/**
|
|
* Beschreiben Sie hier die Klasse Node.
|
|
*
|
|
* @author (Ihr Name)
|
|
* @version (eine Versionsnummer oder ein Datum)
|
|
*/
|
|
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;
|
|
}
|
|
}
|