Zu dieser Karteikarte gibt es einen kompletten Satz an Karteikarten. Kostenlos!
3
TreeNode
public Tree getLeft(){
Tree t = new Tree();
t.root = root.left;
}
public void setLeft(Tree t){
left = t.root;
}
public void insert(int wert){
TreeNode parent= null;
TreeNode child = root;
if (child == null){
root = new TreeNode (wert, null, null);
return;
}
while (child != null){
Tree t = new Tree();
t.root = root.left;
}
public void setLeft(Tree t){
left = t.root;
}
public void insert(int wert){
TreeNode parent= null;
TreeNode child = root;
if (child == null){
root = new TreeNode (wert, null, null);
return;
}
while (child != null){
Karteninfo:
Autor: hristiana86
Oberthema: Informatik
Schule / Uni: HS
Ort: Mannheim
Veröffentlicht: 14.06.2010