- hasEdge(V, V) - Method in class graph.elements.Graph
-
Checks if vertices v1 and v2 are connected i.e.
- hasEdge(V, V) - Method in class graph.ordering.circular.GraphCopy
-
- hashCode() - Method in class graph.algorithms.planarity.dual.DualGraphEdge
-
- hashCode() - Method in class graph.elements.Graph
-
- hashCode() - Method in class graph.properties.components.SplitPair
-
- hasSelfLoopEdges() - Method in class graph.elements.Graph
-
Checks if graph has loops
- hasVertex(V) - Method in class graph.elements.Graph
-
Checks if the graph contains a certain vertex
- height() - Method in class graph.tree.binary.BinaryTree
-
- highpt(V) - Method in class graph.trees.dfs.DFSTree
-
Finds the highpoint of a vertex
Highpoint of a vertex is the highest DFS index of an ancestor of v
reachable through a back edge from a descendant of v
- highpt(E) - Method in class graph.trees.dfs.DFSTree
-
Finds the highpoint of the given edge
The highpt of an edge (v, w) is its highest
return point (or v if none exists).
- HopcroftTarjanSplitComponent<V extends Vertex,E extends Edge<V>> - Class in graph.properties.components
-
A component of a graph used in Hopcroft-Tarjan splitting algorithm
- HopcroftTarjanSplitComponent() - Constructor for class graph.properties.components.HopcroftTarjanSplitComponent
-
Creates an empty component
- HopcroftTarjanSplitComponent(List<E>, List<E>, SplitTriconnectedComponentType) - Constructor for class graph.properties.components.HopcroftTarjanSplitComponent
-
Creates a component with the specified edges and virtual edges
of the given type
- HopcroftTarjanSplitComponent(SplitTriconnectedComponentType, List<E>) - Constructor for class graph.properties.components.HopcroftTarjanSplitComponent
-
Creates a component with the specified edges
of the given type
- HopcroftTarjanSplitting<V extends Vertex,E extends Edge<V>> - Class in graph.properties.splitting
-
Implementation based on Hopcroft and Tarjan's algorithm:
J.
- HopcroftTarjanSplitting(Graph<V, E>) - Constructor for class graph.properties.splitting.HopcroftTarjanSplitting
-
- HopcroftTarjanSplitting(Graph<V, E>, boolean) - Constructor for class graph.properties.splitting.HopcroftTarjanSplitting
-