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.NodemxUnionFind.Node. parentReference 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. nodesMaps from elements to nodesMethods in com.mxgraph.analysis that return mxUnionFind.Node Modifier and Type Method Description mxUnionFind.NodemxUnionFind. find(mxUnionFind.Node node)Returns the set that containsnode.mxUnionFind.NodemxUnionFind. getNode(java.lang.Object element)Returns the node that represents element.mxUnionFind.NodemxUnionFind.Node. getParent()Methods in com.mxgraph.analysis with parameters of type mxUnionFind.Node Modifier and Type Method Description mxUnionFind.NodemxUnionFind. find(mxUnionFind.Node node)Returns the set that containsnode.voidmxUnionFind.Node. setParent(mxUnionFind.Node parent)voidmxUnionFind. union(mxUnionFind.Node a, mxUnionFind.Node b)Unifies the setsaandbin constant time using a union by rank on the tree size.
-