public class GraphTools
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
static int |
calculateLayer(DirectedGraphNodeI _dgn)
Determines the "depth" or layer that the given node is in.
|
static int |
calculateLayer(DirectedGraphNodeI _dgn,
java.util.Set _setVisited) |
static boolean |
canReachMatchingNode(OnlyToDirectedGraphNodeI _dgn,
GraphNodeMatcherI _gnm)
Checks if any node matching the criteria defined by the given
GraphNodeMatcherI can be reached from the given node. |
static boolean |
containsCycle(OnlyToDirectedGraphNodeI _dgn)
Determines if the graph that the given node is part of contains a cycle.
|
static boolean |
containsCycle(OnlyToDirectedGraphNodeI _dgn,
java.util.List _listNodePath) |
static boolean |
containsCycle(OnlyToDirectedGraphNodeI _dgn,
java.util.List _listNodePath,
java.util.Set _setVisited) |
static java.util.List |
findLeaves(DirectedGraphNodeI _dgn)
Finds and returns all the leaves of the graph the given
DirectedGraphNodeI belongs too. |
static java.util.List |
findLeaves(DirectedGraphNodeI _dgn,
java.util.List _listLeaves) |
static java.util.List |
findLeaves(DirectedGraphNodeI _dgn,
java.util.List _listLeaves,
java.util.Set _setVisited) |
static OnlyToDirectedGraphNodeI |
findMatchingNode(OnlyToDirectedGraphNodeI startNode,
GraphNodeMatcherI matcher)
Checks if any node matching the criteria defined by the given
GraphNodeMatcherI can be reached from the given node and
returns the first such node. |
static java.util.Collection<GraphPath> |
findPathsToMatchingNodes(OnlyToDirectedGraphNodeI startNode,
GraphNodeMatcherI matcher) |
static java.util.Collection<GraphPath> |
findPathsToMatchingNodes(OnlyToDirectedGraphNodeI startNode,
GraphNodeMatcherI matcher,
GraphEdgeFilterI edgeFilter) |
static GraphPath |
findPathToMatchingNode(OnlyToDirectedGraphNodeI startNode,
GraphNodeMatcherI matcher) |
static java.util.List |
getPathToRoot(DirectedGraphNodeI _dgn)
Get all nodes, including the given node itself, lying on path to the
"root" of the graph where the "root" is defined as the first node reached
that does not have any incoming edges (no "from" nodes)
|
static java.util.List |
getPathToRoot(DirectedGraphNodeI _dgn,
IndexedHashSet _path) |
public static boolean containsCycle(OnlyToDirectedGraphNodeI _dgn)
_dgn
- the OnlyToDirectedGraphNodeI
from which to
start looking for cycles_listNodePath
- a java.util.List
that will contain the
nodes that form a cycle, if any is found. Can be left null if this info
is not required._setVisited
- Leave this to null, will be set internally in
recursive calls to this method.OnlyToDirectedGraphNodeI
contains a cycle, false if not.public static boolean containsCycle(OnlyToDirectedGraphNodeI _dgn, java.util.List _listNodePath)
public static boolean containsCycle(OnlyToDirectedGraphNodeI _dgn, java.util.List _listNodePath, java.util.Set _setVisited)
public static int calculateLayer(DirectedGraphNodeI _dgn)
DirectedGraphNodeI
from the "root" of the graph where the
"root" is defined as the first node reached that does not have any
incoming edges (no "from" nodes)._dgn
- the DirectedGraphNodeI
for which to calculate
its layer_setVisited
- Leave this to null, will be set internally in
recursive calls to this method.DirectedGraphNodeI
contains a cycle.public static int calculateLayer(DirectedGraphNodeI _dgn, java.util.Set _setVisited)
public static java.util.List getPathToRoot(DirectedGraphNodeI _dgn)
_dgn
- the node for which the path to the root should be determined_path
- an IndexedHashSet
that is filled with the
visited nodes; leave to null, a set will be created automatically.java.util.List
containing the nodes from the given
node to the root, starting with the given node and having the root node
as the last elementjava.lang.IllegalArgumentException
- if a node with more than one parent
(from nodes) is reached since the semantics for path from root are not
clearly defined for such graphs.public static java.util.List getPathToRoot(DirectedGraphNodeI _dgn, IndexedHashSet _path)
public static java.util.List findLeaves(DirectedGraphNodeI _dgn)
DirectedGraphNodeI
belongs too.
Leaves are defined as nodes that have no outgoing edges, that is no "to"
nodes._dgn
- the DirectedGraphNodeI
from which the search
shall start_listLeaves
- a java.util.List
in which the found
leaves will be collected; leave this as null, a new list will be
created automatically then._setVisited
- Leave this to null, will be set internally in
recursive calls to this method.public static java.util.List findLeaves(DirectedGraphNodeI _dgn, java.util.List _listLeaves)
public static java.util.List findLeaves(DirectedGraphNodeI _dgn, java.util.List _listLeaves, java.util.Set _setVisited)
public static boolean canReachMatchingNode(OnlyToDirectedGraphNodeI _dgn, GraphNodeMatcherI _gnm)
GraphNodeMatcherI
can be reached from the given node._dgn
- the OnlyToDirectedGraphNodeI
from which to start
looking for matching (to) nodes._gnm
- the GraphNodeMatcherI
to use for checking if a
node matches.public static OnlyToDirectedGraphNodeI findMatchingNode(OnlyToDirectedGraphNodeI startNode, GraphNodeMatcherI matcher)
GraphNodeMatcherI
can be reached from the given node and
returns the first such node._dgn
- the OnlyToDirectedGraphNodeI
from which to start
looking for matching (to) nodes._gnm
- the GraphNodeMatcherI
to use for checking if a
node matches.GraphNodeMatcherI
or null if no such node could be found
in the graph.public static GraphPath findPathToMatchingNode(OnlyToDirectedGraphNodeI startNode, GraphNodeMatcherI matcher)
public static java.util.Collection<GraphPath> findPathsToMatchingNodes(OnlyToDirectedGraphNodeI startNode, GraphNodeMatcherI matcher)
public static java.util.Collection<GraphPath> findPathsToMatchingNodes(OnlyToDirectedGraphNodeI startNode, GraphNodeMatcherI matcher, GraphEdgeFilterI edgeFilter)
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.