Implementierung Inorder-Traversierung
parent
025c407c76
commit
c20fe70015
|
@ -10,7 +10,13 @@ public class Baum {
|
||||||
|
|
||||||
wurzel.add(wert);
|
wurzel.add(wert);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void inorder() {
|
||||||
|
wurzel.inorder();
|
||||||
|
}
|
||||||
|
|
||||||
|
// ----------
|
||||||
|
|
||||||
class Knoten {
|
class Knoten {
|
||||||
private int wert;
|
private int wert;
|
||||||
private Knoten links, rechts;
|
private Knoten links, rechts;
|
||||||
|
@ -34,6 +40,20 @@ public class Baum {
|
||||||
else
|
else
|
||||||
rechts.add(neuerWert);
|
rechts.add(neuerWert);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void inorder() {
|
||||||
|
// links
|
||||||
|
if (this.links != null)
|
||||||
|
this.links.inorder();
|
||||||
|
|
||||||
|
// ausgabe
|
||||||
|
System.out.println(this.wert);
|
||||||
|
|
||||||
|
// rechts
|
||||||
|
if (this.rechts != null)
|
||||||
|
this.rechts.inorder();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,8 @@ public class Main {
|
||||||
|
|
||||||
b1.add(11);
|
b1.add(11);
|
||||||
|
|
||||||
|
b1.inorder();
|
||||||
|
|
||||||
System.out.println(b1);
|
System.out.println(b1);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue