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.NodemxUnionFind.Node.parentReference to the parent node.Fields in com.mxgraph.analysis with type parameters of type mxUnionFind.NodeModifier and TypeFieldDescriptionprotected Map<Object, mxUnionFind.Node> mxUnionFind.nodesMaps 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.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.