Ubgrade 1.3.

master
david 2023-03-01 10:21:43 +01:00
parent 442f28e8d7
commit 6352d27cf1
2 changed files with 35 additions and 1 deletions

View File

@ -92,6 +92,39 @@ return Suche(ü, u.rechts);
}
return null;
}
public void zurückcodieren(String b){
String Suche = "";
for(int i = 0; i<b.length(); i++){
//sucht Binärcode
Suche += b.charAt(i);
Node n = SucheBinärcode(Suche, Final);
if(n != null){
System.out.print(n.wert);
Suche = "";
}
}
}
public Node SucheBinärcode(String ü, Node u){
//sucht Node mit gesuchtem Binärcode im Binärbaum
if(ü.equals(u.Binärcode)){
return u;
}
else{
//sucht im linken Teil des Baums
if(u.links != null ){
if(SucheBinärcode(ü, u.links)!= null){
return SucheBinärcode(ü, u.links);
}
}
//sucht im rechten Teil des Baumes
if(u.rechts != null){
if(SucheBinärcode(ü, u.rechts) != null){
return SucheBinärcode(ü, u.rechts);
}
}
}
return null;
}
public int Minimum(ArrayList<Node> l){
//setzt temporäres Minimum auf der ersten Stelle der ArrayList
int minindex = 0;

View File

@ -20,7 +20,8 @@ public class Test
b.einfügen(Anzahl);
b.ausgeben(b.Final, "");
b.codieren(Text);
System.out.println();
b.zurückcodieren("01101110101010001101110");
}
}