NodeIt Class Reference


Detailed Description

This iterator goes through each node of the graph. Its usage is quite simple, for example, you can count the number of nodes in a graph g of type Graph like this:
          int count=0;
          for (Graph::NodeIt n(g); n!=INVALID; ++n) ++count;
#include <lemon/concepts/graph.h>

Inherits lemon::SmartGraphBase::Node.

List of all members.

Public Member Functions

 NodeIt ()
 Default constructor.
 NodeIt (const NodeIt &n)
 NodeIt (Invalid)
 Invalid constructor & conversion.
 NodeIt (const Graph &)
 Sets the iterator to the first node.
 NodeIt (const Graph &, const Node &)
 Sets the iterator to the given node.
NodeItoperator++ ()
 Next node.


Constructor & Destructor Documentation

NodeIt (  )  [inline]

Default constructor.

Warning:
It sets the iterator to an undefined value.

NodeIt ( const NodeIt n  )  [inline]

Copy constructor.

NodeIt ( Invalid   )  [inline]

Initializes the iterator to be invalid.

See also:
Invalid for more details.

NodeIt ( const Graph  )  [inline, explicit]

Sets the iterator to the first node of the given digraph.

NodeIt ( const Graph ,
const Node  
) [inline]

Sets the iterator to the given node of the given digraph.


Member Function Documentation

NodeIt& operator++ (  )  [inline]

Assign the iterator to the next node.


doxygen