Uses of Class
org.jgrapht.alg.connectivity.TreeDynamicConnectivity.Arc
-
Packages that use TreeDynamicConnectivity.Arc Package Description org.jgrapht.alg.connectivity Algorithms dealing with various connectivity aspects of a graph. -
-
Uses of TreeDynamicConnectivity.Arc in org.jgrapht.alg.connectivity
Fields in org.jgrapht.alg.connectivity with type parameters of type TreeDynamicConnectivity.Arc Modifier and Type Field Description (package private) DoublyLinkedList<TreeDynamicConnectivity.Arc>TreeDynamicConnectivity.Node. arcsArcs list(package private) DoublyLinkedList.ListNode<TreeDynamicConnectivity.Arc>TreeDynamicConnectivity.Arc. listNodeA list node this arc is stored in.(package private) java.util.Map<TreeDynamicConnectivity.Node,TreeDynamicConnectivity.Arc>TreeDynamicConnectivity.Node. targetMapTarget node to arc mappingMethods in org.jgrapht.alg.connectivity that return TreeDynamicConnectivity.Arc Modifier and Type Method Description (package private) TreeDynamicConnectivity.ArcTreeDynamicConnectivity.Node. getArcTo(TreeDynamicConnectivity.Node node)Returns an arc, which target is equal to thenode(package private) TreeDynamicConnectivity.ArcTreeDynamicConnectivity.Node. getNextArc(TreeDynamicConnectivity.Arc arc)Returns an arc which is stored right after thearc.Methods in org.jgrapht.alg.connectivity with parameters of type TreeDynamicConnectivity.Arc Modifier and Type Method Description (package private) voidTreeDynamicConnectivity.Node. addArcAfter(TreeDynamicConnectivity.Arc arc, TreeDynamicConnectivity.Arc newArc)Inserts thenewArcin the arc list after thearc(package private) voidTreeDynamicConnectivity.Node. addArcLast(TreeDynamicConnectivity.Arc arc)Append thearcto the arc list(package private) TreeDynamicConnectivity.ArcTreeDynamicConnectivity.Node. getNextArc(TreeDynamicConnectivity.Arc arc)Returns an arc which is stored right after thearc.private voidTreeDynamicConnectivity. makeFirstArc(AVLTree<T> tree, TreeDynamicConnectivity.Arc arc)Makes thearcthe first arc traversed by the Euler tourprivate voidTreeDynamicConnectivity. makeLastArc(AVLTree<T> tree, TreeDynamicConnectivity.Node node, TreeDynamicConnectivity.Arc arc)Makes thearcthe last arc of thenodeaccording to the Euler tour(package private) voidTreeDynamicConnectivity.Node. removeArc(TreeDynamicConnectivity.Arc arc)Removes thearcfrom the arc list
-