37 lines
1.8 KiB
Plaintext
37 lines
1.8 KiB
Plaintext
#BlueJ class context
|
|
comment0.target=Traversierungen
|
|
comment0.text=\r\n\ Implementierungen\ der\ drei\ Traversierungsarten\ auf\r\n\ Bin\u00E4rb\u00E4umen\ mit\ Zahl-Inhalten.\r\n
|
|
comment1.params=
|
|
comment1.target=Traversierungen()
|
|
comment10.params=pRoot
|
|
comment10.target=void\ inorder(BinaryTree)
|
|
comment10.text=\r\n\ Rekursive\ Methode\ f\u00FCr\ die\ Inorder-Traversierung.\r\n\ @param\ pRoot\ Der\ Wurzelknoten\ des\ aktuellen\ Teilbaumes.\r\n
|
|
comment11.params=
|
|
comment11.target=int\ findMax()
|
|
comment11.text=\r\n\ Findet\ das\ Maximum\ im\ Baum.\r\n
|
|
comment12.params=pNum
|
|
comment12.target=void\ add(int)
|
|
comment12.text=\r\n\ Addiert\ pNum\ zu\ jedem\ Wert\ im\ Bin\u00E4rbaum.\r\n
|
|
comment2.params=
|
|
comment2.target=void\ preorder()
|
|
comment2.text=\r\n\ Aufruf\ f\u00FCr\ die\ Preorder-Traversierung.\r\n\r\n\ @see\ \#preorder(BinaryTree)\r\n
|
|
comment3.params=pRoot
|
|
comment3.target=void\ preorder(BinaryTree)
|
|
comment3.text=\r\n\ Rekursive\ Methode\ f\u00FCr\ die\ Preorder-Traversierung.\r\n\ @param\ pRoot\ Der\ Wurzelknoten\ des\ aktuellen\ Teilbaumes.\r\n
|
|
comment4.params=
|
|
comment4.target=void\ printHirarchical()
|
|
comment5.params=pRoot\ xOff
|
|
comment5.target=void\ printHirarchical(BinaryTree,\ int)
|
|
comment6.params=off
|
|
comment6.target=void\ printOffset(int)
|
|
comment7.params=
|
|
comment7.target=void\ postorder()
|
|
comment7.text=\r\n\ Aufruf\ f\u00FCr\ die\ Postorder-Traversierung.\r\n\r\n\ @see\ \#postorder(BinaryTree)\r\n
|
|
comment8.params=pRoot
|
|
comment8.target=void\ postorder(BinaryTree)
|
|
comment8.text=\r\n\ Rekursive\ Methode\ f\u00FCr\ die\ Postorder-Traversierung.\r\n\ @param\ pRoot\ Der\ Wurzelknoten\ des\ aktuellen\ Teilbaumes.\r\n
|
|
comment9.params=
|
|
comment9.target=void\ inorder()
|
|
comment9.text=\r\n\ Aufruf\ f\u00FCr\ die\ Inorder-Traversierung.\r\n\r\n\ @see\ \#inorder(BinaryTree)\r\n
|
|
numComments=13
|