32 lines
549 B
Java
32 lines
549 B
Java
|
|
/**
|
|
* Beschreiben Sie hier die Klasse Node.
|
|
*
|
|
* @author (Ihr Name)
|
|
* @version (eine Versionsnummer oder ein Datum)
|
|
*/
|
|
public class Node
|
|
{
|
|
//Attribute
|
|
public char wert;
|
|
public Node rechts;
|
|
public Node links;
|
|
public int Anzahl;
|
|
public String Binärcode;
|
|
//Konstruktor
|
|
public Node(char w, int a){
|
|
wert = w;
|
|
Anzahl = a;
|
|
}
|
|
//Konstruktor linker Knoten
|
|
public void setLinks(Node l){
|
|
links = l;
|
|
|
|
}
|
|
//Konstruktor rechter Knoten
|
|
public void setRechts(Node r){
|
|
rechts = r;
|
|
|
|
}
|
|
}
|