简体   繁体   English

实现具有多个父子节点的图

[英]Implementing a graph with multiple parents and children

I need to implement a tree-like data structure where each node has multiple parents and children and therefore multiple roots.我需要实现一个树状数据结构,其中每个节点都有多个父节点和子节点,因此有多个根。

New nodes will only be added to the tree with as either a root with no parents or a child of one or more parents.新节点只会添加到树中,作为没有父节点的根或一个或多个父节点的子节点。

Nodes will not start with children, but any existing node can gain another child node with any number of other parent nodes节点不会以子节点开始,但任何现有节点都可以通过任意数量的其他父节点获得另一个子节点

树示例

I was able to create a Node class and Graph class.我能够创建一个Node类和Graph类。 I gave each Node a List<Node> of their parent and child nodes.我给每个Node一个List<Node>的父节点和子节点。

Each Node keeps track of its own direct children and parents.每个Node都跟踪自己的直接子Node和父Node

Node implementation节点实现

public class Node<T>{
    private T data;
    private List<Node<T>> parents;
    private List<Node<T>> children = new ArrayList<>();//this can be initialized because a node will not start with children
    public Node(T data){//adding a node without parents
        this.data = data;
        parents = new ArrayList<>();//make parents an empty ArrayList so other methods won't break with a null value
    }
    public Node(T data, List<Node<T>> parents){//adding a node with parents
        this.data = data;
        this.parents = parents;
    }

    //search methods
    public List<Node<T>> getChildren(){return children;}//return only direct children
    public List<Node<T>> getChildren(int level){return getChildren(new ArrayList<>(Collections.singletonList(this)),new ArrayList<>(),level);}//convenience method to find only this node's children to a certain level
    public List<Node<T>> getChildren(List<Node<T>> find, List<Node<T>> found, int level){//level can be -1 to search through all children or a positive integer to only search the first n level of children.
        if(level!=0){//setting level to -1 will never stop the search until all children have been found because level only goes down, because the level will never reach zero
            for(Node<T> node:find){//can find the children of multiple nodes
                if(node.hasChild()) {
                    for (Node<T> child : node.getChildren()) {
                        if (!found.contains(child)) {//trees can intersect, so the child may have already been found, so only add if it hasn't
                            found.add(child);
                        }
                    }
                    getChildren(node.getChildren(),found,level--);//recursively find the remaining children of the current node
                }
            }
        }
        return found;
    }
    //a method that finds parents can be implemented by modifying the getChildren() methods

    //examples of other methods that can be added
    public T getData(){return data;}
    public boolean hasChild(){return children.size()>0;}
    void addChild(Node<T> node){children.add(node);}
    void addChildren(List<Node<T>> nodes){children.addAll(nodes);}
    public List<Node<T>> getParents(){return parents;}
    public boolean hasParent(){return parents.size()>0;}
    void addParent(Node<T> node){parents.add(node);}
    void addParent(List<Node<T>> nodes){parents.addAll(nodes);}
}

The Graph class is only used for keeping track of the graph's roots. Graph类仅用于跟踪图的根。 A root is simply a Node with no parents.根只是一个没有父Node The scopes of each method can be adjusted for your specific use case.可以针对您的特定用例调整每种方法的范围。 This class is meant to be extended by a more specific class that includes methods for dealing with your specific data type.此类旨在通过更具体的类进行扩展,该类包括用于处理您的特定数据类型的方法。

Graph implementation:图实现:

public class Graph<T> {
    private List<Node<T>> roots;
    protected Tree(List<Node<T>> roots){this.roots = roots;}//Graph class can be initialized with or without existing roots 
    protected Tree(){roots = new ArrayList<>();}
    public List<Node<T>> getRoots(){return roots;}
    public List<Node<T>> getAllNodes(){
        List<Node<T>> nodes = roots.get(0).getChildren(roots,new ArrayList<>(),-1);//loop through all roots with an empty list for nodes already found, because no nodes have been found yet
        nodes.addAll(roots);
        return nodes;
    }
    public void addNode(Node<T> node){
        for(Node<T> parent:node.getParents()){//for each parent node add this node as their child
            parent.addChild(node);
        }
        if(!node.hasParent())roots.add(node);
    }
    public void addNodes(List<Node<T>> nodes){
        for(Node<T> node:nodes){
            addNode(node);
        }
    }
}

When adding a new Node with parents, the Graph class gets the parents and adds the Node as a child of those parents so the parent nodes know they have child node.添加带有父Node的新Node时, Graph类获取父Node并将该Node添加为这些父节点的子节点,以便父节点知道它们有子节点。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM