Class LinkedUndirectedGraph<N,E>
java.lang.Object
com.google.javascript.jscomp.graph.Graph<N,E>
com.google.javascript.jscomp.graph.UndiGraph<N,E>
com.google.javascript.jscomp.graph.LinkedUndirectedGraph<N,E>
- Type Parameters:
N- Value type that the graph node stores.E- Value type that the graph edge stores.
- All Implemented Interfaces:
AdjacencyGraph<N,,E> GraphvizGraph
An undirected graph using linked list within nodes to store edge
information.
-
Nested Class Summary
Nested classes/interfaces inherited from class com.google.javascript.jscomp.graph.UndiGraph
UndiGraph.UndiGraphEdge<N,E>, UndiGraph.UndiGraphNode<N, E> Nested classes/interfaces inherited from class com.google.javascript.jscomp.graph.Graph
Graph.GraphEdge<N,E> Nested classes/interfaces inherited from interface com.google.javascript.jscomp.graph.GraphvizGraph
GraphvizGraph.GraphvizEdge, GraphvizGraph.GraphvizNode -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedLinkedUndirectedGraph(boolean useNodeAnnotations, boolean useEdgeAnnotations) -
Method Summary
Modifier and TypeMethodDescriptionvoidConnects two nodes in the graph with an edge.static <N,E> LinkedUndirectedGraph<N, E> create()createNode(N value) Gets a node from the graph given a value.createUndirectedGraphNode(N nodeValue) static <N,E> LinkedUndirectedGraph<N, E> static <N,E> LinkedUndirectedGraph<N, E> static <N,E> LinkedUndirectedGraph<N, E> voiddisconnect(N srcValue, N destValue) Disconnects two nodes in the graph by removing all edges between them.getEdges()Gets an immutable list of all edges.Retrieves an edge from the graph.getFirstEdge(N n1, N n2) Retrieves any edge from the graph.Retrieve a list of edges in the graph.Retrieve a list of nodes in the graph.getName()Name of the graph.getNeighborNodes(N value) Gets the neighboring nodes.getNeighborNodesIterator(N value) Gets a node from the graph given a value.intgetNodeDegree(N value) Gets the degree of a node.getNodes()Gets an immutable list of all nodes.getUndirectedGraphEdges(N n1, N n2) getUndirectedGraphNode(N nodeValue) booleanisConnected(N n1, E e, N n2) Checks whether two nodes in the graph are connected by the given edge type.booleanisConnected(N n1, N n2) Checks whether two nodes in the graph are connected.booleanGraph type.Returns an empty SubGraph for this Graph.Methods inherited from class com.google.javascript.jscomp.graph.Graph
clearEdgeAnnotations, clearNodeAnnotations, connectIfNotFound, getWeight, hasNode, popEdgeAnnotations, popNodeAnnotations, pushEdgeAnnotations, pushNodeAnnotations
-
Field Details
-
nodes
-
-
Constructor Details
-
LinkedUndirectedGraph
protected LinkedUndirectedGraph(boolean useNodeAnnotations, boolean useEdgeAnnotations)
-
-
Method Details
-
newSubGraph
Description copied from interface:AdjacencyGraphReturns an empty SubGraph for this Graph.- Specified by:
newSubGraphin interfaceAdjacencyGraph<N,E>
-
createWithoutAnnotations
-
createWithNodeAnnotations
-
createWithEdgeAnnotations
-
create
-
connect
Description copied from class:GraphConnects two nodes in the graph with an edge. -
disconnect
Description copied from class:GraphDisconnects two nodes in the graph by removing all edges between them.- Specified by:
disconnectin classGraph<N,E> - Parameters:
srcValue- First node.destValue- Second node.
-
createUndirectedGraphNode
-
getNeighborNodes
Description copied from class:GraphGets the neighboring nodes.- Specified by:
getNeighborNodesin classGraph<N,E> - Parameters:
value- The node's value.- Returns:
- A list of neighboring nodes.
-
getNeighborNodesIterator
- Specified by:
getNeighborNodesIteratorin classGraph<N,E>
-
getUndirectedGraphEdges
-
getUndirectedGraphNode
- Specified by:
getUndirectedGraphNodein classUndiGraph<N,E>
-
getUndirectedGraphNodes
-
createNode
Description copied from class:GraphGets a node from the graph given a value. New nodes are created if that value has not been assigned a graph node. Values equality are compared usingObject.equals.- Specified by:
createNodein classGraph<N,E> - Parameters:
value- The node's value.- Returns:
- The corresponding node in the graph.
-
getEdges
Description copied from class:GraphRetrieves an edge from the graph. -
getFirstEdge
Description copied from class:GraphRetrieves any edge from the graph.- Specified by:
getFirstEdgein classGraph<N,E> - Parameters:
n1- Node one.n2- Node two.- Returns:
- The first edges between those two values in the graph. null if there are none.
-
getNode
Description copied from interface:AdjacencyGraphGets a node from the graph given a value. Values equality are compared usingObject.equals.- Specified by:
getNodein interfaceAdjacencyGraph<N,E> - Parameters:
value- The node's value.- Returns:
- The corresponding node in the graph, null if there value has no corresponding node.
-
isConnected
Description copied from class:GraphChecks whether two nodes in the graph are connected.- Specified by:
isConnectedin classGraph<N,E> - Parameters:
n1- Node 1.n2- Node 2.- Returns:
trueif the two nodes are connected.
-
isConnected
Description copied from class:GraphChecks whether two nodes in the graph are connected by the given edge type.- Specified by:
isConnectedin classGraph<N,E> - Parameters:
n1- Node 1.e- The edge type.n2- Node 2.
-
getGraphvizEdges
Description copied from interface:GraphvizGraphRetrieve a list of edges in the graph.- Specified by:
getGraphvizEdgesin interfaceGraphvizGraph- Returns:
- A list of edges in the graph.
-
getName
Description copied from interface:GraphvizGraphName of the graph.- Specified by:
getNamein interfaceGraphvizGraph- Returns:
- Name of the graph.
-
getGraphvizNodes
Description copied from interface:GraphvizGraphRetrieve a list of nodes in the graph.- Specified by:
getGraphvizNodesin interfaceGraphvizGraph- Returns:
- A list of nodes in the graph.
-
isDirected
public boolean isDirected()Description copied from interface:GraphvizGraphGraph type.- Specified by:
isDirectedin interfaceGraphvizGraph- Returns:
- True if the graph is a directed graph.
-
getNodes
Description copied from class:GraphGets an immutable list of all nodes. -
getEdges
Description copied from class:GraphGets an immutable list of all edges. -
getNodeDegree
Description copied from class:GraphGets the degree of a node.- Specified by:
getNodeDegreein classGraph<N,E> - Parameters:
value- The node's value.- Returns:
- The degree of the node.
-