public abstract class AbstractGraph<V,E> extends java.lang.Object implements Graph<V,E>, java.io.Serializable
Graph
interface.
Designed to simplify implementation of new graph classes.Constructor and Description |
---|
AbstractGraph() |
Modifier and Type | Method and Description |
---|---|
boolean |
addEdge(E e,
V v1,
V v2)
Adds edge
e to this graph such that it connects
vertex v1 to v2 . |
boolean |
addEdge(E e,
V v1,
V v2,
EdgeType edgeType)
Adds edge
e to this graph such that it connects
vertex v1 to v2 . |
boolean |
addEdgeWithEndPoints(E edge,
Pair<? extends V> endpoints)
Adds
edge to this graph with the specified endpoints ,
with the default edge type. |
abstract boolean |
addEdgeWithEndpoints(E edge,
Pair<? extends V> endpoints,
EdgeType edgeType)
Adds
edge to this graph with the specified endpoints
and EdgeType . |
boolean |
addEdgeWithVertices(E edge,
java.util.Collection<? extends V> vertices)
Adds
edge to this graph. |
boolean |
addEdgeWithVertices(E edge,
java.util.Collection<? extends V> vertices,
EdgeType edgeType)
Adds
edge to this graph with type edge_type . |
int |
degree(V vertex)
Returns the number of edges incident to
vertex . |
E |
findEdge(V v1,
V v2)
Returns an edge that connects this vertex to
v . |
java.util.Collection<E> |
findEdgeSet(V v1,
V v2)
Returns all edges that connects this vertex to
v . |
int |
getIncidentCount(E edge)
Returns the number of vertices that are incident to
edge . |
java.util.Collection<V> |
getIncidentVertices(E edge)
Returns the collection of vertices in this graph which are connected to
edge . |
int |
getNeighborCount(V vertex)
Returns the number of vertices that are adjacent to
vertex (that is, the number of vertices that are incident
to edges in vertex 's incident edge set). |
V |
getOpposite(V vertex,
E edge)
Returns the vertex at the other end of
edge from vertex . |
int |
getPredecessorCount(V vertex)
Returns the number of predecessors that
vertex has in this graph. |
int |
getSuccessorCount(V vertex)
Returns the number of successors that
vertex has in this graph. |
protected Pair<V> |
getValidatedEndpoints(E edge,
Pair<? extends V> endpoints) |
int |
inDegree(V vertex)
Returns the number of incoming edges incident to
vertex . |
boolean |
isIncident(V vertex,
E edge)
Returns
true if vertex and edge
are incident to each other. |
boolean |
isNeighbor(V v1,
V v2)
Returns
true if v1 and v2 share an incident edge. |
boolean |
isPredecessor(V v1,
V v2)
Returns
true if v1 is a predecessor of v2 in this graph. |
boolean |
isSuccessor(V v1,
V v2)
Returns
true if v1 is a successor of v2 in this graph. |
int |
outDegree(V vertex)
Returns the number of outgoing edges incident to
vertex . |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getDest, getEndpoints, getInEdges, getOutEdges, getPredecessors, getSource, getSuccessors, isDest, isSource
addVertex, containsEdge, containsVertex, getDefaultEdgeType, getEdgeCount, getEdgeCount, getEdges, getEdgesView, getEdgeType, getIncidentEdges, getNeighbors, getVertexCount, getVerticesView, removeEdge, removeVertex
public boolean addEdgeWithVertices(E edge, java.util.Collection<? extends V> vertices)
Hypergraph
edge
to this graph. Fails under the following circumstances:
edge
is already an element of the graphedge
or vertices
is null
vertices
has the wrong number of vertices for the graph typevertices
are already connected by another edge in this graph, and this graph does not accept parallel edgesaddEdgeWithVertices
in interface Hypergraph<V,E>
edge
- the edgevertices
- the verticestrue
if the add is successful, and false
otherwisepublic boolean addEdgeWithVertices(E edge, java.util.Collection<? extends V> vertices, EdgeType edgeType)
Hypergraph
edge
to this graph with type edge_type
. Fails under the following circumstances:
edge
is already an element of the graphedge
or vertices
is null
vertices
has the wrong number of vertices for the graph typevertices
are already connected by another edge in this graph, and this graph does not accept parallel edgesedgeType
is not legal for this graphaddEdgeWithVertices
in interface Hypergraph<V,E>
edge
- the edgevertices
- the verticesedgeType
- the edge typetrue
if the add is successful, and false
otherwisepublic boolean addEdge(E e, V v1, V v2)
Graph
e
to this graph such that it connects
vertex v1
to v2
.
Equivalent to addEdge(e, new Pair(v1, v2))
.
If this graph does not contain v1
, v2
,
or both, implementations may choose to either silently add
the vertices to the graph or throw an IllegalArgumentException
.
If this graph assigns edge types to its edges, the edge type of
e
will be the default for this graph.
See Hypergraph.addEdge()
for a listing of possible reasons
for failure.addEdge
in interface Graph<V,E>
e
- the edge to be addedv1
- the first vertex to be connectedv2
- the second vertex to be connectedtrue
if the add is successful, false
otherwiseGraph.addEdge(Object, Object, Object, EdgeType)
public boolean addEdge(E e, V v1, V v2, EdgeType edgeType)
Graph
e
to this graph such that it connects
vertex v1
to v2
.
Equivalent to addEdge(e, new Pair(v1, v2))
.
If this graph does not contain v1
, v2
,
or both, implementations may choose to either silently add
the vertices to the graph or throw an IllegalArgumentException
.
If edgeType
is not legal for this graph, this method will
throw IllegalArgumentException
.
See Hypergraph.addEdge()
for a listing of possible reasons
for failure.public boolean addEdgeWithEndPoints(E edge, Pair<? extends V> endpoints)
edge
to this graph with the specified endpoints
,
with the default edge type.public abstract boolean addEdgeWithEndpoints(E edge, Pair<? extends V> endpoints, EdgeType edgeType)
edge
to this graph with the specified endpoints
and EdgeType
.public int inDegree(V vertex)
Graph
vertex
.
Equivalent to getInEdges(vertex).size()
.public int outDegree(V vertex)
Graph
vertex
.
Equivalent to getOutEdges(vertex).size()
.public boolean isPredecessor(V v1, V v2)
Graph
true
if v1
is a predecessor of v2
in this graph.
Equivalent to v1.getPredecessors().contains(v2)
.isPredecessor
in interface Graph<V,E>
v1
- the first vertex to be queriedv2
- the second vertex to be queriedtrue
if v1
is a predecessor of v2
, and false otherwise.public boolean isSuccessor(V v1, V v2)
Graph
true
if v1
is a successor of v2
in this graph.
Equivalent to v1.getSuccessors().contains(v2)
.isSuccessor
in interface Graph<V,E>
v1
- the first vertex to be queriedv2
- the second vertex to be queriedtrue
if v1
is a successor of v2
, and false otherwise.public int getPredecessorCount(V vertex)
Graph
vertex
has in this graph.
Equivalent to vertex.getPredecessors().size()
.getPredecessorCount
in interface Graph<V,E>
vertex
- the vertex whose predecessor count is to be returnedvertex
has in this graphpublic int getSuccessorCount(V vertex)
Graph
vertex
has in this graph.
Equivalent to vertex.getSuccessors().size()
.getSuccessorCount
in interface Graph<V,E>
vertex
- the vertex whose successor count is to be returnedvertex
has in this graphpublic boolean isNeighbor(V v1, V v2)
Hypergraph
true
if v1
and v2
share an incident edge.
Equivalent to getNeighbors(v1).contains(v2)
.isNeighbor
in interface Hypergraph<V,E>
v1
- the first vertex to testv2
- the second vertex to testtrue
if v1
and v2
share an incident edgepublic boolean isIncident(V vertex, E edge)
Hypergraph
true
if vertex
and edge
are incident to each other.
Equivalent to getIncidentEdges(vertex).contains(edge)
and to
getIncidentVertices(edge).contains(vertex)
.isIncident
in interface Hypergraph<V,E>
vertex
- the vertexedge
- the edgetrue
if vertex
and edge
are incident to each otherpublic int getNeighborCount(V vertex)
Hypergraph
vertex
(that is, the number of vertices that are incident
to edges in vertex
's incident edge set).
Equivalent to getNeighbors(vertex).size()
.getNeighborCount
in interface Hypergraph<V,E>
vertex
- the vertex whose neighbor count is to be returnedpublic int degree(V vertex)
Hypergraph
vertex
.
Special cases of interest:
getNeighborCount
)getIncidentEdges(vertex).size()
.degree
in interface Hypergraph<V,E>
vertex
- the vertex whose degree is to be returnedHypergraph.getNeighborCount(Object)
public int getIncidentCount(E edge)
Hypergraph
edge
. For hyperedges, this can be any nonnegative integer; for edges this
must be 2 (or 1 if self-loops are permitted).
Equivalent to getIncidentVertices(edge).size()
.getIncidentCount
in interface Hypergraph<V,E>
edge
- the edge whose incident vertex count is to be returnededge
.public V getOpposite(V vertex, E edge)
Graph
edge
from vertex
.
(That is, returns the vertex incident to edge
which is not vertex
.)getOpposite
in interface Graph<V,E>
vertex
- the vertex to be queriededge
- the edge to be queriededge
from vertex
public E findEdge(V v1, V v2)
Hypergraph
v
. If this edge is not uniquely defined (that is, if the graph
contains more than one edge connecting v1
to v2
), any of these edges may be returned.
findEdgeSet(v1, v2)
may be used to return all such edges.
Returns null if either of the following is true:
v2
is not connected to v1
v1
or v2
are not present in this graphv1
is only considered to be connected to
v2
via a given directed edge e
if
v1 == e.getSource() && v2 == e.getDest()
evaluates to true
.
(v1
and v2
are connected by an undirected edge u
if
u
is incident to both v1
and v2
.)findEdge
in interface Hypergraph<V,E>
v1
- the first vertexv2
- the second vertexv1
to v2
, or null
if no such edge exists (or either
vertex is not present)Hypergraph.findEdgeSet(Object, Object)
public java.util.Collection<E> findEdgeSet(V v1, V v2)
Hypergraph
v
. If this edge is not uniquely defined (that is, if the graph
contains more than one edge connecting v1
to v2
), any of these edges may be returned.
findEdgeSet(v1, v2)
may be used to return all such edges.
Returns null if v2
is not connected to v1
. Returns an empty collection if either v1
or v2
are not present in this graph.
Note: for purposes of this method, v1
is only considered to be connected to
v2
via a given directed edge d
if
v1 == d.getSource() && v2 == d.getDest()
evaluates to true
.
(v1
and v2
are connected by an undirected edge u
if
u
is incident to both v1
and v2
.)findEdgeSet
in interface Hypergraph<V,E>
v1
- the first vertexv2
- the second vertexv1
to v2
,
or null
if either vertex is not presentHypergraph.findEdge(Object, Object)
public java.util.Collection<V> getIncidentVertices(E edge)
Hypergraph
edge
.
Note that for some graph types there are guarantees about the size of this collection
(i.e., some graphs contain edges that have exactly two endpoints, which may or may
not be distinct). Implementations for those graph types may provide alternate methods
that provide more convenient access to the vertices.getIncidentVertices
in interface Hypergraph<V,E>
edge
- the edge whose incident vertices are to be returnededge
,
or null
if edge
is not presentCopyright © 2021, 2022 Herve Girod. All Rights Reserved. Documentation and source under the BSD 3-Clause licence