Public Member Functions

Graph::IncEdgeIt Class Reference


Detailed Description

This iterator goes trough the incident undirected edges of a certain node of a graph. Its usage is quite simple, for example, you can compute the degree (i.e. the number of incident edges) of a node n in a graph g of type Graph as follows.

          int count=0;
          for(Graph::IncEdgeIt e(g, n); e!=INVALID; ++e) ++count;
Warning:
Loop edges will be iterated twice.

#include <lemon/concepts/graph.h>

Inheritance diagram for Graph::IncEdgeIt:

List of all members.

Public Member Functions

 IncEdgeIt ()
 Default constructor.
 IncEdgeIt (const IncEdgeIt &e)
 IncEdgeIt (Invalid)
 Invalid constructor & conversion.
 IncEdgeIt (const Graph &, const Node &)
 Sets the iterator to the first incident edge.
 IncEdgeIt (const Graph &, const Edge &)
 Sets the iterator to the given edge.
IncEdgeItoperator++ ()
 Next incident edge.

Constructor & Destructor Documentation

IncEdgeIt ( ) [inline]

Default constructor.

Warning:
It sets the iterator to an undefined value.
IncEdgeIt ( const IncEdgeIt e) [inline]

Copy constructor.

IncEdgeIt ( Invalid  ) [inline]

Initializes the iterator to be invalid.

See also:
Invalid for more details.
IncEdgeIt ( const Graph ,
const Node  
) [inline]

Sets the iterator to the first incident edge of the given node.

IncEdgeIt ( const Graph ,
const Edge  
) [inline]

Sets the iterator to the given edge of the given graph.


Member Function Documentation

IncEdgeIt& operator++ ( ) [inline]

Assign the iterator to the next incident edge of the corresponding node.

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines