如何将子级添加到n数组树中的特定节点?

问题描述 投票:5回答:2

我写了这个n数组树类。我想编写一种将子代添加到树中特定节点的方法。

[首先,我应该搜索我的树以找到父亲,然后将孩子添加到该节点中。我不知道如何声明我的方法

public class FamilyNode {
    public String name;
    public String Family;
    public String sex;
    public FamilyNode Father;
    public FamilyNode Mother;
    public FamilyNode Spouse=null;
    public String status="alive";
    public int population;
    public ArrayList<FamilyNode> children=new ArrayList<FamilyNode>() ;


    public FamilyNode(String firstname,String lastname,String sex1){
        this.name=firstname;
        this.Family=lastname;
        this.sex=sex1;
        this.population=this.children.size()+1;
    }

    public void SetParents(FamilyNode father,FamilyNode mother){
        this.Father=father;
        this.Mother=mother;
    }

    public void SetHW(FamilyNode HW){
        this.Spouse=HW;
    }

    public int Number (){
        int number_of_descendants = this.population;

        if(this.Spouse!=null) number_of_descendants++;

        for(int index = 0; index < this.children.size(); index++)
            number_of_descendants = number_of_descendants+ this.children.get(index).Number();
            return number_of_descendants;
    }

    public void AddChild(FamilyNode Father,FamilyNode child){

        //the code here                                         
    }                                        
}
java arrays search tree
2个回答
2
投票

我昨天回答了您的一个related questions,所以让我们继续我发布的代码:)

public class FamilyNode {
    // ...
    // ...
    public FamilyNode findNodeByName(String nodeName){
       if(name.equals(nodeName)){
          // We found a node named nodeName, return it
          return this;
       } 
       // That's not me that you are looking for, let's see my kids
       for(FamilyNode child : children){
            if(child.findNodeByName(nodeName) != null) 
                // We found what we are looking, just return from here
                return child;
       }
       // Finished looping over all nodes and did not find any, return null
       return null;
    }

    public void addChild(FamilyNode child){
       children.add(child);
    }
}

[基本上,您需要找到要查找的节点(在本例中为名称),可以通过上面的findNodeByName完成。找到该节点后,向其添加一个子节点。

像这样使用此代码:

FamilyNode root = ...;
FamilyNode node = root.findNodeByName("Parent");
if(node != null) node.addChild(...);

NOTE如果要调试并访问所有树节点,请使用此方法:

public FamilyNode findNodeByName(String nodeName){
   System.out.println("Visiting node "+ name);
   // That's not me that you are looking for, let's see my kids
   for(FamilyNode child : children){
     child.findNodeByName(nodeName)
   }
   // Finished looping over all nodes and did not find any, return null
   return null;
}

0
投票

这不完全是一棵树,因为孩子可能有两个父母,而不仅仅是一个。这是一个有向图。

最好将变量和方法名更改为与以小写字符开头的常规Java约定一致。

[出于数据一致性的考虑,您可以考虑使addChild方法简单地添加到当前节点的子级列表中,但是在setParents方法中,更新两个父级的子级列表,并添加通过调用father.addChild(this)mother.addChild(this)将当前节点作为子节点存在(当然防止它们为null)。

如果父节点在先前设置时可以更改(可能是错误的),则还需要从先前设置的父节点中删除当前节点。为此,您可能需要removeChild(FamilyNode child)方法。再次为了数据一致性,此方法可能还应该将子节点中的相应父字段设置为null。

© www.soinside.com 2019 - 2024. All rights reserved.