Uses of Class
com.mxgraph.analysis.mxUnionFind.Node
-
Packages that use mxUnionFind.Node Package Description com.mxgraph.analysis This package provides various algorithms for graph analysis, such as shortest path and minimum spanning tree. -
-
Uses of mxUnionFind.Node in com.mxgraph.analysis
Fields in com.mxgraph.analysis declared as mxUnionFind.Node Modifier and Type Field Description protected mxUnionFind.Node
mxUnionFind.Node. parent
Reference to the parent node.Fields in com.mxgraph.analysis with type parameters of type mxUnionFind.Node Modifier and Type Field Description protected java.util.Map<java.lang.Object,mxUnionFind.Node>
mxUnionFind. nodes
Maps from elements to nodesMethods in com.mxgraph.analysis that return mxUnionFind.Node Modifier and Type Method Description mxUnionFind.Node
mxUnionFind. find(mxUnionFind.Node node)
Returns the set that containsnode
.mxUnionFind.Node
mxUnionFind. getNode(java.lang.Object element)
Returns the node that represents element.mxUnionFind.Node
mxUnionFind.Node. getParent()
Methods in com.mxgraph.analysis with parameters of type mxUnionFind.Node Modifier and Type Method Description mxUnionFind.Node
mxUnionFind. find(mxUnionFind.Node node)
Returns the set that containsnode
.void
mxUnionFind.Node. setParent(mxUnionFind.Node parent)
void
mxUnionFind. union(mxUnionFind.Node a, mxUnionFind.Node b)
Unifies the setsa
andb
in constant time using a union by rank on the tree size.
-