|
My Project
|
This iterator goes trough the incoming arcs of a certain node of a digraph. Its usage is quite simple, for example, you can count the number of incoming arcs of a node n in a digraph g of type Digraph as follows.
#include <lemon/concepts/digraph.h>
Public Member Functions | |
| InArcIt () | |
| Default constructor. | |
| InArcIt (const InArcIt &e) | |
| Copy constructor. | |
| InArcIt (Invalid) | |
| Invalid constructor & conversion. | |
| InArcIt (const Digraph &, const Node &) | |
| Sets the iterator to the first incoming arc. | |
| InArcIt (const Digraph &, const Arc &) | |
| Sets the iterator to the given arc. | |
| InArcIt & | operator++ () |
| Next incoming arc. | |
|
inline |
Default constructor.
|
inline |
Copy constructor.
|
inline |
Initializes the iterator to be invalid.
|
inline |
Sets the iterator to the first incoming arc of the given node.
|
inline |
Sets the iterator to the given arc of the given digraph.
|
inline |
Assign the iterator to the next incoming arc of the corresponding node.