This structure can be used to establish another graph over a node set of an existing one. This class uses the same Node type as the underlying graph, and each valid node of the original graph is valid in this arc set, therefore the node objects of the original graph can be used directly with this class. The node handling functions (id handling, observing, and iterators) works equivalently as in the original graph.
This implementation is based on doubly-linked lists, from each node the incident edges make up lists, therefore one edge can be erased in constant time. It also makes possible, that node can be removed from the underlying graph, in this case all edges incident to the given node is erased from the arc set.
This class fully conforms to the Graph concept. It provides only linear time counting for nodes, edges and arcs.
#include <lemon/edge_set.h>
Inherits EdgeSetExtender< Base >.
Public Member Functions | |
ListEdgeSet (const GR &graph) | |
Edge | addEdge (const Node &u, const Node &v) |
Add a new edge to the graph. | |
void | erase (const Edge &e) |
Erase an edge from the graph. | |
|
inline |
Constructor of the EdgeSet.
|
inline |
Add a new edge to the graph with node u
and node v
endpoints.
|
inline |
Erase the edge e
from the graph.