Class AVLApplet
java.lang.Object
|
+----java.awt.Component
|
+----java.awt.Container
|
+----java.awt.Panel
|
+----java.applet.Applet
|
+----AVLApplet
- public class AVLApplet
- extends Applet
- implements ActionListener, AdjustmentListener
Applet zur Darstellung eines AVL-Baumes
-
AVLApplet()
-
-
actionPerformed(ActionEvent)
- Ereignisbehandlung.
-
adjustmentValueChanged(AdjustmentEvent)
-
-
init()
-
-
randomInt(int, int)
- erzeugt Zufallszahlen.
-
start()
- starte Applet.
-
stop()
- stoppe Applet.
AVLApplet
public AVLApplet()
init
public void init()
- Overrides:
- init in class Applet
actionPerformed
public void actionPerformed(ActionEvent e)
- Ereignisbehandlung.
Wird der entsprechende Button gedrückt, wird callTreeAlg in TreeAlgorithm
aufgerufen.
- See Also:
- callTreeAlg
adjustmentValueChanged
public void adjustmentValueChanged(AdjustmentEvent e)
start
public void start()
- starte Applet.
Ruft nur start in TreeAlgorithm auf.
- Overrides:
- start in class Applet
- See Also:
- start
stop
public void stop()
- stoppe Applet.
Ruft nur stop in TreeAlgorithm auf.
- Overrides:
- stop in class Applet
- See Also:
- stop
randomInt
protected int randomInt(int min,
int max)
- erzeugt Zufallszahlen.
- Parameters:
- min - kleinste Zahl
- max - größte Zahl