Uses of Class
com.mxgraph.analysis.mxUnionFind.Node
Packages that use mxUnionFind.Node
Package
Description
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.NodeModifier and TypeFieldDescriptionprotected mxUnionFind.Node
mxUnionFind.Node.parent
Reference to the parent node.Fields in com.mxgraph.analysis with type parameters of type mxUnionFind.NodeModifier and TypeFieldDescriptionprotected Map
<Object, mxUnionFind.Node> mxUnionFind.nodes
Maps from elements to nodesMethods in com.mxgraph.analysis that return mxUnionFind.NodeModifier and TypeMethodDescriptionmxUnionFind.find
(mxUnionFind.Node node) Returns the set that containsnode
.Returns the node that represents element.mxUnionFind.Node.getParent()
Methods in com.mxgraph.analysis with parameters of type mxUnionFind.NodeModifier and TypeMethodDescriptionmxUnionFind.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.